[Tusky10] Fix recollapsing expanded sensitive content in the thread view (#1689)

This commit is contained in:
Levi Bard 2020-02-14 19:04:14 +01:00 committed by GitHub
parent 185bfeb9f3
commit 04275b4073
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ public final class ViewThreadFragment extends SFragment implements
.setIsExpanded(expanded)
.createStatusViewData();
statuses.setPairedItem(position, newViewData);
adapter.setItem(position, newViewData, false);
adapter.setItem(position, newViewData, true);
updateRevealIcon();
}