1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Fix Android bugs

This commit is contained in:
xmflsct
2023-01-08 00:05:58 +01:00
parent 2d9dc00683
commit fb3f2e82d6
2 changed files with 19 additions and 7 deletions

View File

@ -114,7 +114,12 @@ const Timeline: React.FC<Props> = ({
colors={[colors.primaryDefault]}
progressBackgroundColor={colors.backgroundDefault}
refreshing={isFetching || isLoading}
onRefresh={() => refetch()}
onRefresh={() => {
if (readMarker) {
setAccountStorage([{ key: readMarker, value: undefined }])
}
refetch()
}}
/>
)
}