From 933a871396fb3bd28073953292211495e5829fc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Katzer?= Date: Wed, 13 Feb 2019 11:32:22 +0100 Subject: [PATCH] Fix URI detection --- src/ios/APPPrinter.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ios/APPPrinter.m b/src/ios/APPPrinter.m index 795b909..f90b844 100755 --- a/src/ios/APPPrinter.m +++ b/src/ios/APPPrinter.m @@ -192,7 +192,7 @@ initWithMarkupText:content]; }); } - else if ([NSURL URLWithString:content]) + else if ([NSURL URLWithString:content].scheme) { item = [APPPrinterItem ItemFromURL:content]; }