プロジェクト

全般

プロフィール

環境対応 #954 » 0001-URI-match.patch

あひる 家鴨, 2017-10-29 21:00

差分を表示:

core/lib/retriever/uri.rb
77 77

  
78 78
  def scheme
79 79
    if has_string? and !has_uri?
80
      match = @uri_string.match(%r<\A(\w+):>)
80
      match = @uri_string.match(%r<\A(\w+)://>)
81 81
      if match
82 82
        match[1]
83 83
      else
core/plugin/photo/photo.rb
13 13

  
14 14
  # Generic URI
15 15
  filter_uri_filter do |uri|
16
    if uri.is_a?(String) && uri.match(%r<\A\w+:>)
16
    if uri.is_a?(String) && uri.match(%r<\A\w+://>)
17 17
      [Addressable::URI.parse(uri)]
18 18
    else
19 19
      [uri]
(5-5/5)