Skip to content

Commit

Permalink
Fix country filter
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Dec 25, 2019
1 parent 6591326 commit 5ca9e3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/panels/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class HacsStore extends LitElement {
// Check contry restrictions
if (
this.configuration.country !== "ALL" &&
repository.country !== undefined
!this.hacs.isnullorempty(repository.country)
) {
if (this.configuration.country !== repository.country) return false;
}
Expand Down

0 comments on commit 5ca9e3a

Please sign in to comment.