Skip to content

Commit 4f58fa2

Browse files
committed
add changelogs
Signed-off-by: R4SAS <[email protected]>
1 parent f2550cb commit 4f58fa2

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* Store files in location appropriate for Android 11
2+
* Attempt to reconnect call after network switch
3+
* Show caller JID and account JID in incoming call screen
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* Fix interaction with Google Maps Share Location Plugin
2+
* Remove footnote with regards to server fee
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* Security: Stop downloading files that exceed advertised file size
2+
* Security: Limit POSH files to 10K

src/main/java/eu/siacs/conversations/xmpp/jingle/JingleConnectionManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ && isUsingClearNet(account)) {
143143
}
144144

145145
private boolean isUsingClearNet(final Account account) {
146-
return !account.isOnion() && !mXmppConnectionService.useTorToConnect() && !account.isI2P()&& !mXmppConnectionService.useI2PToConnect();
146+
return !account.isOnion() && !mXmppConnectionService.useTorToConnect() && !account.isI2P() && !mXmppConnectionService.useI2PToConnect();
147147
}
148148

149149
public boolean isBusy() {

0 commit comments

Comments
 (0)