fixed digest-md5 auth to work with prosody as well. thank you Florian Schmaus

Daniel Gultsch created

Change summary

src/eu/siacs/conversations/utils/CryptoHelper.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

src/eu/siacs/conversations/utils/CryptoHelper.java 🔗

@@ -82,7 +82,7 @@ public class CryptoHelper {
 					+ "\",realm=\"" + account.getServer() + "\",nonce=\""
 					+ nonce + "\",cnonce=\"" + cNonce
 					+ "\",nc="+nonceCount+",qop=auth,digest-uri=\""+digestUri+"\",response=" + response
-					+ ",charset=utf-8,authzid=\"" + account.getJid() + "\"";
+					+ ",charset=utf-8";
 			Log.d("xmppService", "saslString=" + saslString);
 			return Base64.encodeToString(
 					saslString.getBytes(Charset.defaultCharset()),