Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
Fixed token expired error #4
Browse files Browse the repository at this point in the history
  • Loading branch information
eglia committed Mar 15, 2016
1 parent bd58f4d commit 0af4b81
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## Changelog
### 0.2.11
- Fixed token expired error ([#4](https://github.com/eglia/ff-oc-passwords/issues/4))

### 0.2.10
- Fixed regression introduced in 0.2.9 which caused the addon to break

Expand Down
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ function fetchLoginList(databaseHost, databaseUser, databasePassword) {
var passwordRequest = Request({
url: databaseHost + "/index.php/apps/passwords/api/0.1/passwords",
headers: {"Authorization": "Basic " + encodedData},
anonymous: true,
onComplete: function (response) {
if (response.status == 200){
loginList = response.json;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"title": "ownCloud Passwords",
"name": "ff-oc-passwords",
"version": "0.2.10",
"version": "0.2.11",
"description": "A Firefox add-on to access passwords stored in an ownCloud.",
"homepage": "https://github.com/eglia/ff-oc-passwords",
"main": "index.js",
Expand Down

0 comments on commit 0af4b81

Please sign in to comment.