Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed can not open couchdb credentials. #1830

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed can not open couchdb credentials.
  • Loading branch information
fbewivpjsbsby committed Jul 2, 2023
commit 5836c00eb159f0505a8dcce5f35b284efb341741
4 changes: 2 additions & 2 deletions src/services/providers/helpers/couchdbHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const request = async (token, options = {}) => {
url: utils.resolveUrl(baseUrl, '../_session'),
withCredentials: true,
body: {
name,
password,
name: name || '',
password: password || '',
},
});
} catch (err) {
Expand Down