Update to 7.3.1 (2206)

This commit is contained in:
DrKLO 2021-01-01 08:38:45 +04:00
parent d0e2266da1
commit d52de1a40a
33 changed files with 407 additions and 235 deletions

View file

@ -70,6 +70,9 @@ public class DocumentObject {
}
public static SvgHelper.SvgDrawable getSvgThumb(TLRPC.Document document, String colorKey, float alpha, float zoom) {
if (document == null) {
return null;
}
SvgHelper.SvgDrawable pathThumb = null;
for (int b = 0, N2 = document.thumbs.size(); b < N2; b++) {
TLRPC.PhotoSize size = document.thumbs.get(b);