Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
foobnix committed Dec 18, 2023
1 parent 2954aae commit d7b2c3d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions app/src/main/java/com/foobnix/OpenerActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ protected void onCreate(Bundle savedInstanceState) {
if (uri == null) {
Toast.makeText(this, R.string.msg_unexpected_error, Toast.LENGTH_SHORT).show();
finish();
return;
}


Expand Down
17 changes: 9 additions & 8 deletions app/src/main/java/com/foobnix/ui2/fragment/PrefFragment2.java
Original file line number Diff line number Diff line change
Expand Up @@ -2295,7 +2295,7 @@ public void run() {
sendNotifyTintChanged();
((MainTabs2) getActivity()).updateCurrentFragment();

TxtUtils.updateAllLinks(inflate,true);
TxtUtils.updateAllLinks(inflate, true);

}
});
Expand Down Expand Up @@ -2634,13 +2634,14 @@ public void run() {
AppProfile.syncExclude.delete();

File rootFiles = AppProfile.SYNC_FOLDER_DEVICE_PROFILE;
if (rootFiles != null) {
for (File file : rootFiles.listFiles()) {
String name = file.getName();
if (name.endsWith(".css")) {
file.delete();
LOG.d("Delete-css", file);

for (File file : rootFiles.listFiles()) {
String name = file.getName();
if (name.endsWith(".css")) {
file.delete();
LOG.d("Delete-css", file);

}
}
}

Expand Down Expand Up @@ -2687,7 +2688,7 @@ public void run() {
);


TxtUtils.updateAllLinks(inflate,true);
TxtUtils.updateAllLinks(inflate, true);
return inflate;

}
Expand Down

0 comments on commit d7b2c3d

Please sign in to comment.