fix(unofficial-quote-toots): add a check for the end index in the early return

This commit is contained in:
LucasGGamerM
2024-07-19 11:13:08 -03:00
parent c785bbb2d7
commit 5b25168eb7

View File

@@ -717,7 +717,7 @@ public abstract class BaseStatusListFragment<T extends DisplayItemsParent> exten
} }
} }
if (startIndex==-1) if (startIndex==-1 || endIndex==-1)
return; return;
// Only StatusListFragments/NotificationsListFragments can display status with quotes // Only StatusListFragments/NotificationsListFragments can display status with quotes