Skip to content

Commit

Permalink
Update password check URL for OTP Manager Nextcloud 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
beatles1 committed Apr 11, 2024
1 parent 0854484 commit 5fe0907
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifest.firefox.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Simple OTP Manager Browser Extension",
"version": "0.32",
"version": "0.33",

"description": "Browser extension to access TOTP and HOTP codes stored in the OTP Manager Nextcloud app",

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Simple OTP Manager Browser Extension",
"version": "0.32",
"version": "0.33",

"description": "Browser extension to access TOTP and HOTP codes stored in the OTP Manager Nextcloud app",

Expand Down
2 changes: 1 addition & 1 deletion password.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function checkPassword(useSaved) {
try {
let headers = requestHeaders
headers.set("Content-Type", "application/json")
const response = await fetch(window.server+ "/index.php/apps/otpmanager/password/check", {
const response = await fetch(window.server+ "/ocs/v2.php/apps/otpmanager/password/check", {
method: "POST",
headers: requestHeaders,
credentials: "omit",
Expand Down

0 comments on commit 5fe0907

Please sign in to comment.