Skip to content

Commit 3bd0bb9

Browse files
authored
Fixed IsZipFile
Forgot to include the default return case.
1 parent 73bdb70 commit 3bd0bb9

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Assets/Late Night Studios/ZipExtractor/Editor/UnityZipExtraction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ private static bool IsZipFile(string input)
136136
return true;
137137
case "7z":
138138
return true;
139+
140+
default:
141+
return false;
139142
}
140143
}
141144
}

0 commit comments

Comments
 (0)