aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-09 13:46:21 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-09 13:46:21 +0100
commitb33684666e15e86840383cf8725df460a49e7deb (patch)
tree9dc944ec48643246c173f019e166026448503c66
parentTypo.* (diff)
downloadnewspipe-b33684666e15e86840383cf8725df460a49e7deb.tar.gz
newspipe-b33684666e15e86840383cf8725df460a49e7deb.tar.bz2
newspipe-b33684666e15e86840383cf8725df460a49e7deb.zip
Bug fix.
-rw-r--r--pyaggr3g470r/static/js/articles.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/static/js/articles.js b/pyaggr3g470r/static/js/articles.js
index 312a5cb6..e30c6979 100644
--- a/pyaggr3g470r/static/js/articles.js
+++ b/pyaggr3g470r/static/js/articles.js
@@ -18,7 +18,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-API_ROOT = 'api/v2.0/'
+API_ROOT = '/api/v2.0/'
if (typeof jQuery === 'undefined') { throw new Error('Requires jQuery') }
bgstack15