Skip reloading transient accounts

This commit is contained in:
M66B
2022-01-15 14:37:05 +01:00
parent 0b4865a0bf
commit a6837729f4
3 changed files with 3 additions and 3 deletions

View File

@@ -305,7 +305,7 @@ public class AdapterAttachment extends RecyclerView.Adapter<AdapterAttachment.Vi
if (account == null)
return null;
if (!"connected".equals(account.state))
if (!"connected".equals(account.state) && !account.isTransient(context))
reload = account.id;
EntityAttachment attachment = db.attachment().getAttachment(id);