Switched order of evaluation. Because I could not generate language file from strings.txt without 'tags' option.
This commit is contained in:
parent
f5f7215d96
commit
0139f8d5e5
1 changed files with 4 additions and 4 deletions
|
@ -23,12 +23,12 @@ module Twine
|
|||
end
|
||||
|
||||
def matches_tags?(tags)
|
||||
if @tags == nil || @tags.length == 0
|
||||
# This row has no tags. Never match
|
||||
return false
|
||||
elsif tags == nil || tags.length == 0
|
||||
if tags == nil || tags.length == 0
|
||||
# The user did not specify any tags. Everything passes.
|
||||
return true
|
||||
elsif @tags == nil || @tags.length == 0
|
||||
# This row has no tags. Never match
|
||||
return false
|
||||
else
|
||||
tags.each do |tag|
|
||||
if @tags.include? tag
|
||||
|
|
Reference in a new issue