mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 15:11:03 +00:00
Fixed typo
This commit is contained in:
parent
76a6dad91b
commit
10f5f33931
2 changed files with 3 additions and 3 deletions
|
@ -1156,7 +1156,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
private void bindAttachments(final TupleMessageEx message, @Nullable List<EntityAttachment> attachments) {
|
||||
if (attachments == null)
|
||||
attachments = new ArrayList<>();
|
||||
properties.setAttchments(message.id, attachments);
|
||||
properties.setAttachments(message.id, attachments);
|
||||
|
||||
boolean show_inline = properties.getValue("inline", message.id);
|
||||
Log.i("Show inline=" + show_inline);
|
||||
|
@ -3540,7 +3540,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
|
||||
Spanned getBody(long id);
|
||||
|
||||
void setAttchments(long id, List<EntityAttachment> attachments);
|
||||
void setAttachments(long id, List<EntityAttachment> attachments);
|
||||
|
||||
List<EntityAttachment> getAttachments(long id);
|
||||
|
||||
|
|
|
@ -1204,7 +1204,7 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
|||
}
|
||||
|
||||
@Override
|
||||
public void setAttchments(long id, List<EntityAttachment> list) {
|
||||
public void setAttachments(long id, List<EntityAttachment> list) {
|
||||
attachments.put(id, list);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue