Skip to content
This repository has been archived by the owner on Jun 19, 2019. It is now read-only.

Commit

Permalink
Fixed new news feed selector
Browse files Browse the repository at this point in the history
GitHub changed the UI and also the selector for the news feed URL.
  • Loading branch information
julkue committed Jul 15, 2016
1 parent f41d3b7 commit 1aeef21
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "news-feed-for-github",
"version": "1.1.2",
"version": "1.1.4",
"description": "GitHub news feed notifications directly in the browser",
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "News Feed for GitHub",
"description": "GitHub news feed notifications directly in the browser",
"version": "1.1.3",
"version": "1.1.4",
"homepage_url": "https://github.com/julmot/news-feed-for-github",
"icons": {
"48": "icons/icon-48.png",
Expand Down
2 changes: 1 addition & 1 deletion extension/scripts/NewsFeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class NewsFeed {
try {
let tmp = document.createElement('div');
tmp.innerHTML = unescape(data);
var rss = tmp.querySelector(".subscribe-feed");
var rss = tmp.querySelector("a.link-gray-dark");
rss = rss.getAttribute("href");
if(rss === null || rss === "") {
throw new Error("err");
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": "news-feed-for-github",
"version": "1.1.3",
"version": "1.1.4",
"description": "GitHub news feed notifications directly in the browser",
"author": {
"name": "Julian Motz",
Expand Down

0 comments on commit 1aeef21

Please sign in to comment.