0
0
Fork 0

Fix not rejecting remote URIs when parsing out local IDs (#3012)

This commit is contained in:
Eugen Rochko 2017-05-12 16:47:55 +02:00 committed by GitHub
parent 2cc0d56652
commit 43d754eb42
2 changed files with 4 additions and 1 deletions

View file

@ -48,6 +48,7 @@ class TagManager
end
def unique_tag_to_local_id(tag, expected_type)
return nil unless local_id?(tag)
matches = Regexp.new("objectId=([\\d]+):objectType=#{expected_type}").match(tag)
return matches[1] unless matches.nil?
end