mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-15 23:59:08 +00:00
Fix mark as played sheet logic being reversed (#443)
This commit is contained in:
@@ -46,7 +46,7 @@ export const PlayedStatus: React.FC<Props> = ({ item, ...props }) => {
|
||||
<RoundButton
|
||||
fillColor={item.UserData?.Played ? "primary" : undefined}
|
||||
icon={item.UserData?.Played ? "checkmark" : "checkmark"}
|
||||
onPress={() => markAsPlayedStatus(item.UserData?.Played || false)}
|
||||
onPress={() => markAsPlayedStatus(!item.UserData?.Played)}
|
||||
size="large"
|
||||
/>
|
||||
</View>
|
||||
|
||||
Reference in New Issue
Block a user