From b4612859b2f1d6678940e74952e21a4ea68d8b85 Mon Sep 17 00:00:00 2001 From: Tlaster Date: Wed, 22 Apr 2020 18:45:30 +0800 Subject: [PATCH] Fix #1231 --- .../loader/statuses/ConversationLoader.kt | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/twidere/src/main/kotlin/org/mariotaku/twidere/loader/statuses/ConversationLoader.kt b/twidere/src/main/kotlin/org/mariotaku/twidere/loader/statuses/ConversationLoader.kt index 4a5d87030..bfd66daea 100644 --- a/twidere/src/main/kotlin/org/mariotaku/twidere/loader/statuses/ConversationLoader.kt +++ b/twidere/src/main/kotlin/org/mariotaku/twidere/loader/statuses/ConversationLoader.kt @@ -154,16 +154,16 @@ class ConversationLoader( if (loadReplies || noSinceMaxId || sinceId != null && sinceSortId > status.sort_id) { // Load replies var repliesLoaded = false - try { - if (details.type == AccountType.TWITTER) { - if (noSinceMaxId) { - statuses.addAll(loadTwitterWebReplies(details, twitter)) - } - repliesLoaded = true - } - } catch (e: MicroBlogException) { - // Ignore - } +// try { +// if (details.type == AccountType.TWITTER) { +// if (noSinceMaxId) { +// statuses.addAll(loadTwitterWebReplies(details, twitter)) +// } +// repliesLoaded = true +// } +// } catch (e: MicroBlogException) { +// // Ignore +// } if (!repliesLoaded) { val query = SearchQuery() query.count(100)