don't remove gap when removing status

re: sk22#898
This commit is contained in:
sk
2023-10-26 18:32:46 +02:00
parent c8f633ae3b
commit e8c9253a76
2 changed files with 3 additions and 1 deletions

View File

@@ -273,6 +273,7 @@ public class CacheController{
public void deleteStatus(String id){
runOnDbThread((db)->{
// TODO: set previous status's hasGapAfter flag if the deleted status hasGapAfter
db.delete("home_timeline", "`id`=?", new String[]{id});
});
}