Skip to content

Commit 3086a6e

Browse files
committed
fix: correct typo in HTTP status message for case 300
1 parent 674d1e0 commit 3086a6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/ee/forgr/capacitor_inappbrowser/WebViewDialog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2688,7 +2688,7 @@ public static String getReasonPhrase(int statusCode) {
26882688
case (205) -> "Reset Content";
26892689
case (206) -> "Partial Content";
26902690
case (207) -> "Partial Update OK";
2691-
case (300) -> "Mutliple Choices";
2691+
case (300) -> "Multiple Choices";
26922692
case (301) -> "Moved Permanently";
26932693
case (302) -> "Moved Temporarily";
26942694
case (303) -> "See Other";

0 commit comments

Comments
 (0)