Skip to content

Commit

Permalink
fixed broken creation of new subjects
Browse files Browse the repository at this point in the history
  • Loading branch information
litoj committed Jun 8, 2022
1 parent 9d31a01 commit f18b89f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Android app/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.schlmgr"
minSdkVersion 19
targetSdkVersion 32
versionCode 60
versionName '1.8.1'
versionCode 61
versionName '1.8.2'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
signingConfig signingConfigs.debug
}
Expand Down
2 changes: 1 addition & 1 deletion Android app/app/src/main/java/com/schlmgr/gui/UriPath.java
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ protected boolean deleteFile(DocumentFile src) {

@Override
public boolean exists() {
return file.exists();
return file.exists() && (file.isDirectory() || file.length() > 0);
}

@Override
Expand Down
Binary file modified SchoolManager.apk
Binary file not shown.

0 comments on commit f18b89f

Please sign in to comment.