Skip to content

Commit

Permalink
fix(get-client-filters): make client filters List modifiable, avoidin…
Browse files Browse the repository at this point in the history
…g a crash when trying to modify it
  • Loading branch information
LucasGGamerM committed May 11, 2024
1 parent 9332172 commit 368e226
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ public <T> boolean filterStatusContainingObject(T object, Function<T, Status> ex
}

public List<FilterResult> getClientSideFilters(Status status) {
List<FilterResult> filters = List.of();
List<FilterResult> filters = new ArrayList<>();

// filter post that have no alt text
// it only applies when activated in the settings
Expand Down

0 comments on commit 368e226

Please sign in to comment.