Skip to content

Commit 818ad3e

Browse files
committed
Retrieval of profile extensions does not require credentials, don't pass
1 parent 83e8be3 commit 818ad3e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/connection/Connection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1445,7 +1445,7 @@ module.exports = (() => {
14451445
return;
14461446
}
14471447

1448-
retrieveProfileExtensions(array.difference(symbols, __completedProfileExtensions), __loginInfo.username, __loginInfo.password)
1448+
retrieveProfileExtensions(array.difference(symbols, __completedProfileExtensions))
14491449
.then((extensions) => {
14501450
if (__connectionState !== state.authenticated) {
14511451
return;

lib/connection/snapshots/profiles/retrieveExtensions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = (() => {
2323
* @param {String[]} symbols
2424
* @returns {Promise<ProfileExtension[]>}
2525
*/
26-
function retrieveExtensions(symbols, username, password) {
26+
function retrieveExtensions(symbols) {
2727
return Promise.resolve()
2828
.then(() => {
2929
if (logger === null) {

0 commit comments

Comments
 (0)