temporary workaround for issue #1181

This commit is contained in:
Torvin 2019-06-21 00:17:03 +12:00
parent c33e8d8809
commit add0af58a9
1 changed files with 3 additions and 1 deletions

View File

@ -89,7 +89,9 @@ class ConversationLoader(
canLoadAllReplies = false canLoadAllReplies = false
when (account.type) { when (account.type) {
AccountType.TWITTER -> { AccountType.TWITTER -> {
val isOfficial = account.isOfficial(context) // TODO: temporary workaround for issue #1181
// val isOfficial = account.isOfficial(context)
val isOfficial = false
canLoadAllReplies = isOfficial canLoadAllReplies = isOfficial
if (isOfficial) { if (isOfficial) {
return microBlog.showConversation(status.id, paging).mapMicroBlogToPaginated { return microBlog.showConversation(status.id, paging).mapMicroBlogToPaginated {