Fix not rejecting remote URIs when parsing out local IDs (#3012)
This commit is contained in:
parent
2cc0d56652
commit
43d754eb42
2 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue