mirror of https://github.com/M66B/FairEmail.git
Merge branch 'master' into android14
This commit is contained in:
commit
cb2fbbb70a
|
@ -4,6 +4,11 @@
|
|||
|
||||
For support you can use [the contact form](https://contact.faircode.eu/?product=fairemailsupport).
|
||||
|
||||
### [Ubirajara](https://en.wikipedia.org/wiki/Ubirajara_jubatus)
|
||||
|
||||
* Small improvements and minor bug fixes
|
||||
* Updated [translations](https://crowdin.com/project/open-source-email)
|
||||
|
||||
### [Tratayenia](https://en.wikipedia.org/wiki/Tratayenia)
|
||||
|
||||
### 1.2074 - 2023-06-08
|
||||
|
|
|
@ -5,7 +5,7 @@ apply plugin: 'de.undercouch.download'
|
|||
|
||||
def getVersionCode = { -> return 2075 }
|
||||
def getRevision = { -> return "a" }
|
||||
def getReleaseName = { -> return "Tratayenia" }
|
||||
def getReleaseName = { -> return "Ubirajara" }
|
||||
// https://en.wikipedia.org/wiki/List_of_dinosaur_genera
|
||||
|
||||
def keystoreProperties = new Properties()
|
||||
|
|
|
@ -4,6 +4,11 @@
|
|||
|
||||
For support you can use [the contact form](https://contact.faircode.eu/?product=fairemailsupport).
|
||||
|
||||
### [Ubirajara](https://en.wikipedia.org/wiki/Ubirajara_jubatus)
|
||||
|
||||
* Small improvements and minor bug fixes
|
||||
* Updated [translations](https://crowdin.com/project/open-source-email)
|
||||
|
||||
### [Tratayenia](https://en.wikipedia.org/wiki/Tratayenia)
|
||||
|
||||
### 1.2074 - 2023-06-08
|
||||
|
|
|
@ -7789,11 +7789,15 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
same = false;
|
||||
log("uid changed", next.id);
|
||||
|
||||
// Download body when needed
|
||||
if (!next.content &&
|
||||
prev.uid == null && next.uid != null && // once only
|
||||
properties.getValue("expanded", next.id))
|
||||
EntityOperation.queue(context, next, EntityOperation.BODY);
|
||||
if (prev.uid == null && next.uid != null) { // once only
|
||||
// Mark seen when needed
|
||||
if (!Boolean.TRUE.equals(next.ui_seen) && next.accountAutoSeen)
|
||||
EntityOperation.queue(context, next, EntityOperation.SEEN, true);
|
||||
|
||||
// Download body when needed
|
||||
if (!next.content && properties.getValue("expanded", next.id))
|
||||
EntityOperation.queue(context, next, EntityOperation.BODY);
|
||||
}
|
||||
}
|
||||
if (!Objects.equals(prev.msgid, next.msgid)) {
|
||||
// debug info
|
||||
|
|
|
@ -4,6 +4,11 @@ Changelog
|
|||
|
||||
For support you can use the contact form.
|
||||
|
||||
Ubirajara
|
||||
|
||||
* Small improvements and minor bug fixes
|
||||
* Updated translations
|
||||
|
||||
Tratayenia
|
||||
|
||||
1.2074 - 2023-06-08
|
||||
|
|
Loading…
Reference in New Issue