Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
fix(Hide ads): app crashes in the old client
Browse files Browse the repository at this point in the history
  • Loading branch information
inotia00 authored and anddea committed Jun 14, 2024
1 parent 8c406b8 commit bf3cdc9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private static DialogType getDialogType(int code){
return Arrays.stream(values())
.filter(val -> code == val.code)
.findFirst()
.orElse(null);
.orElse(DialogType.NULL);
}
}

Expand Down

0 comments on commit bf3cdc9

Please sign in to comment.