Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrico972 committed Jul 15, 2024
1 parent 427502b commit d421a13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ object Utils {
while (i < array.size()) {
val value = convertDynamic(array.getDynamic(i))
// Filter the unused features.
if (value == "chat" || value == "location") {
if (value.getString() == "chat" || value.getString() == "location") {
i++
continue
}
Expand Down

0 comments on commit d421a13

Please sign in to comment.