Skip to content

Commit

Permalink
Replace missing regex
Browse files Browse the repository at this point in the history
  • Loading branch information
fbacall committed Feb 27, 2025
1 parent c98e7ad commit 4836d35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/seek/templates/extract/rightfield_extractor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def seek_uri_by_type(type)

def seek_id_uris
values_for_property(:seekID, :literal).select do |uri|
valid = uri =~ URI::DEFAULT_PARSER.regexp[:ABS_URI]
valid = uri =~ URI::ABS_URI
add_warning(:id_not_a_valid_uri, uri) unless valid || uri.blank?
valid
end
Expand Down

0 comments on commit 4836d35

Please sign in to comment.