We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d20b237 commit b4c423bCopy full SHA for b4c423b
1 file changed
Rewrite-Parser.js
@@ -801,7 +801,9 @@ if (binaryInfo != null && binaryInfo.length > 0) {
801
for (let key in modInfoObj) {
802
if (modInfoObj[key]) {
803
let value = modInfoObj[key]
804
- if (isLooniOS && key == 'category') {
+ if (isSurgeiOS && key == 'system'){
805
+ value = value == 'iOS' ? 'ios' : (value == 'macOS' ? 'mac' : value)
806
+ } else if (isLooniOS && key == 'category') {
807
key = 'keyword'
808
} else if (!isLooniOS && key == 'keyword') {
809
key = 'category'
0 commit comments