Skip to content

Commit

Permalink
Merge pull request #104 from shgysk8zer0/patch/url-fix
Browse files Browse the repository at this point in the history
Patch/url fix
  • Loading branch information
shgysk8zer0 committed Aug 23, 2018
2 parents 7cbe971 + a4f5e56 commit 7e93405
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ async function openFeed({feed, target = 'current', service = 'rss', index = unde
url.searchParams.set('add_feed', feed);
break;
case 'tinyTinyRss':
url = new URL('/tt-rss/public.php', opts.tinyTinyRssUrl);
url = new URL('public.php', opts.tinyTinyRssUrl);
url.searchParams.set('op', 'subscribe');
url.searchParams.set('feed_url', feed);
break;
case 'nextcloud':
url = new URL('/index.php/apps/news', opts.nextcloudUrl);
url = new URL('apps/news', opts.nextcloudUrl);
url.searchParams.set('subscribe_to', feed);
break;
default:
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Chris Zuber",
"url": "https://shgysk8zer0.github.io"
},
"version": "1.3.1",
"version": "1.3.2",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/shgysk8zer0/awesome-rss",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "awesome-rss",
"version": "1.3.1",
"version": "1.3.2",
"description": "Puts an RSS/Atom subscribe button back in URL bar",
"keywords": [
"WebExtension",
Expand Down

0 comments on commit 7e93405

Please sign in to comment.