Skip to content

Commit 9cde40a

Browse files
* missing parentheses in if statement
1 parent 92fa891 commit 9cde40a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/com/futurepress/staticserver/FPStaticServerModule.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public void start(String _port, String root, Boolean localhost, Boolean keepAliv
9595
}
9696
}
9797

98-
if(root != null && (root.startsWith("/") || root.startsWith("file:///")) {
98+
if(root != null && (root.startsWith("/") || root.startsWith("file:///"))) {
9999
www_root = new File(root);
100100
localPath = www_root.getAbsolutePath();
101101
} else {

0 commit comments

Comments
 (0)