Skip to content

Commit f084947

Browse files
authored
Merge pull request #45 from mayankbaiswar-CSE/master
* missing parentheses in if statement
2 parents 92fa891 + 9cde40a commit f084947

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)