diff options
Diffstat (limited to 'lib/feed2imap/config.rb')
-rw-r--r-- | lib/feed2imap/config.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/feed2imap/config.rb b/lib/feed2imap/config.rb index 8899ef5..0483423 100644 --- a/lib/feed2imap/config.rb +++ b/lib/feed2imap/config.rb @@ -40,7 +40,7 @@ class F2IConfig @conf['feeds'].each do |f| if f['disable'].nil? uri = URI::parse(f['target']) - path = uri.path + path = URI::unescape(uri.path) path = path[1..-1] if path[0,1] == '/' @feeds.push(ConfigFeed::new(f, @imap_accounts.add_account(uri), path)) end |