mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 01:01:55 +01:00
add brackets for operator precedence
This commit is contained in:
parent
c5178b4c99
commit
f68429487e
1 changed files with 1 additions and 1 deletions
|
@ -1435,7 +1435,7 @@ function updatePreviewBar(): void {
|
|||
showLarger: segment.actionType === ActionType.Poi,
|
||||
description: segment.description,
|
||||
source: segment.source,
|
||||
requiredSegment: requiredSegment && segment.UUID === requiredSegment || segment.UUID.startsWith(requiredSegment)
|
||||
requiredSegment: requiredSegment && (segment.UUID === requiredSegment || segment.UUID.startsWith(requiredSegment))
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue