[Glitch] Fix posts coming from public/hashtag streaming being marked as unquotable

Port 9dbebbb2ee to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Claire
2025-11-13 13:54:28 +01:00
parent 19cc39abf0
commit 8ab9040afc
10 changed files with 49 additions and 16 deletions

View File

@@ -32,7 +32,7 @@ function getStatusResultFunction(
};
}
if (statusBase.get('isLoading')) {
if (statusBase.get('isLoading') && !statusBase.get('content')) {
return {
status: null,
loadingState: 'loading',
@@ -75,7 +75,7 @@ function getStatusResultFunction(
map.set('matched_filters', filtered);
map.set('matched_media_filters', mediaFiltered);
}),
loadingState: 'complete'
loadingState: statusBase.get('isLoading') ? 'loading' : 'complete'
};
}