From 27aaf38ab43aa8e980e5c614d89baad9a2770b42 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 26 Jan 2012 13:12:14 +0400 Subject: [PATCH] notifier: fix to use public.php --- utils/notifier/background.html | 2 +- utils/notifier/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/notifier/background.html b/utils/notifier/background.html index bee00560b..751456766 100644 --- a/utils/notifier/background.html +++ b/utils/notifier/background.html @@ -18,7 +18,7 @@ function update() { if (single_user == "1") login = "admin"; - var requestUrl = localStorage["site_url"] + "/backend.php"; + var requestUrl = localStorage["site_url"] + "/public.php"; var params = "op=getUnread&fresh=1&login=" + param_escape(login); var xhr = new XMLHttpRequest(); diff --git a/utils/notifier/manifest.json b/utils/notifier/manifest.json index 191842a3e..8294469ee 100644 --- a/utils/notifier/manifest.json +++ b/utils/notifier/manifest.json @@ -1,7 +1,7 @@ { "name": "Tiny Tiny RSS Notifier", "background_page": "background.html", - "version": "0.4", + "version": "0.4.2", "description": "This extension displays the number of unread articles in your Tiny Tiny RSS installation", "options_page": "options.html", "icons": { "48": "images/icon.png", "128": "images/icon.png" },