Skip to content

Commit 37ccb2f

Browse files
authored
ios mac
1 parent 2175582 commit 37ccb2f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Rewrite-Parser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ if (binaryInfo != null && binaryInfo.length > 0) {
802802
if (modInfoObj[key]) {
803803
let value = modInfoObj[key]
804804
if (isSurgeiOS && key == 'system') {
805-
value = { iOS: 'ios', iPadOS: 'ios', tvOS: 'ios', macOS: 'mac' } [value] || value
805+
value = value.toLowerCase().includes('mac') ? 'mac' : 'ios'
806806
} else if (isLooniOS && key == 'category') {
807807
key = 'keyword'
808808
} else if (!isLooniOS && key == 'keyword') {

0 commit comments

Comments
 (0)