Fix video thumbnail not displaying after sharing to conversation thread.

This commit is contained in:
alex-signal 2019-09-19 13:50:23 -03:00 committed by Greyson Parrelli
parent a3caabcafd
commit de03706d8d

View File

@ -257,7 +257,8 @@ public class ThumbnailView extends FrameLayout {
}
if (this.slide != null && this.slide.getFastPreflightId() != null &&
this.slide.getFastPreflightId().equals(slide.getFastPreflightId()))
Util.equals(this.slide.getThumbnailUri(), slide.getThumbnailUri()) &&
Util.equals(this.slide.getFastPreflightId(), slide.getFastPreflightId()))
{
Log.i(TAG, "Not re-loading slide for fast preflight: " + slide.getFastPreflightId());
this.slide = slide;