mirror of
https://github.com/fabianonline/telegram_backup.git
synced 2024-11-22 08:46:15 +00:00
Fixed NPE from DocumentFileManager.isSticker. #30.
This commit is contained in:
parent
114a20a71c
commit
a8325735a3
@ -60,6 +60,7 @@ public class DocumentFileManager extends AbstractMediaFileManager {
|
||||
|
||||
public boolean isSticker() {
|
||||
TLDocumentAttributeSticker sticker = null;
|
||||
if (this.isEmpty || doc==null) return false;
|
||||
if (doc.getAttributes() != null) for(TLAbsDocumentAttribute attr : doc.getAttributes()) {
|
||||
if (attr instanceof TLDocumentAttributeSticker) {
|
||||
sticker = (TLDocumentAttributeSticker)attr;
|
||||
|
Loading…
Reference in New Issue
Block a user