1.1949 release

This commit is contained in:
M66B 2022-08-13 13:17:14 +02:00
parent f004dd8da5
commit a9e452aaab
7 changed files with 349931 additions and 2 deletions

View File

@ -4,6 +4,10 @@
### [Ledumahadi](https://en.wikipedia.org/wiki/Ledumahadi)
### 1.1949 - 2022-08-13
* Fixed a crash caused by fixing an issue
### 1.1948 - 2022-08-13
* Extended unread shadow

View File

@ -3,7 +3,7 @@ apply plugin: 'com.bugsnag.android.gradle'
apply plugin: 'kotlin-android'
apply plugin: 'de.undercouch.download'
def getVersionCode = { -> return 1948 }
def getVersionCode = { -> return 1949 }
def getRevision = { -> return "a" }
def getReleaseName = { -> return "Ledumahadi" }
// https://en.wikipedia.org/wiki/List_of_dinosaur_genera

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -4,6 +4,10 @@
### [Ledumahadi](https://en.wikipedia.org/wiki/Ledumahadi)
### 1.1949 - 2022-08-13
* Fixed a crash caused by fixing an issue
### 1.1948 - 2022-08-13
* Extended unread shadow

View File

@ -150,7 +150,7 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
// prevent garbage collection
synchronized (tasks) {
if (id != null)
for (SimpleTask task : tasks)
for (SimpleTask task : new ArrayList<>(tasks))
if (id.equals(task.id))
task.cancel(context);
tasks.add(this);

File diff suppressed because it is too large Load Diff