소스 검색

Update metadata.rs

Turns out unreleased tracks can have no forbidden and allowed lists at all, take care of that.
Evgeny S 8 년 전
부모
커밋
96c199e95a
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/metadata.rs

+ 1 - 0
src/metadata.rs

@@ -38,6 +38,7 @@ fn parse_restrictions<'s, I>(restrictions: I, country: &str, catalogue: &str) ->
         }
     }
 
+    (has_forbidden || has_allowed) &&
     (!has_forbidden || !countrylist_contains(forbidden.as_str(), country)) &&
     (!has_allowed || countrylist_contains(allowed.as_str(), country))
 }