Skip to content

Commit

Permalink
Fixing an issue with a missing argument (#2261)
Browse files Browse the repository at this point in the history
undefined
  • Loading branch information
viviicat authored Jul 1, 2023
1 parent 8b4df95 commit 155fc45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/concerns/theming_concern.rb
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def resolve_pack(data, pack_name, skin)
end

fallbacks.each do |fallback|
return resolve_pack(Themes.instance.flavour(fallback), pack_name) if Themes.instance.flavour(fallback)
return resolve_pack(Themes.instance.flavour(fallback), pack_name, skin) if Themes.instance.flavour(fallback)
end

nil
Expand Down

0 comments on commit 155fc45

Please sign in to comment.