You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is the check in ProfilesUtils.isProfileUsingBasicAuth behaving as expected? Curious if this: "user" in prof && "password" in prof;
should be changed to: prof.user != null && prof.password != null;
Is the check in
ProfilesUtils.isProfileUsingBasicAuthbehaving as expected? Curious if this:"user" in prof && "password" in prof;should be changed to:
prof.user != null && prof.password != null;Originally posted by @t1m0thyj in #2606 (comment)