Merge pull request #192 from okcaptain/dev

fix
pull/197/head
FongMi 2 years ago committed by GitHub
commit c788eac48f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      catvod/src/main/java/com/github/catvod/utils/Path.java

@ -189,6 +189,8 @@ public class Path {
while ((amountRead = in.read(buffer)) != -1) {
out.write(buffer, 0, amountRead);
}
in.close();
out.close();
}
public static void newFile(File file) {

Loading…
Cancel
Save