1
0
mirror of https://github.com/fabianonline/telegram_backup.git synced 2025-07-04 14:06:25 +00:00

Fix intendation

This commit is contained in:
Hannes
2018-05-13 13:00:48 +02:00
parent 9c1f495782
commit e2c2e5c3ed

View File

@ -68,6 +68,7 @@ class StickerFileManager(message: JsonObject, file_base: String) : DocumentFileM
?: stickerSet.get("id").nullString ?: stickerSet.get("id").nullString
?: stickerSet.get("_constructor").nullString ?: stickerSet.get("_constructor").nullString
?: error("could not get a good name from: ${sticker["stickerset"]}") ?: error("could not get a good name from: ${sticker["stickerset"]}")
val hash = sticker["alt"].string.hashCode() val hash = sticker["alt"].string.hashCode()
return "${set}_${hash}" return "${set}_${hash}"
} }