This commit is contained in:
Tlaster 2020-04-22 18:45:30 +08:00
parent 27ffaa7af6
commit b4612859b2
1 changed files with 10 additions and 10 deletions

View File

@ -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)