check if sender is in contact list before accepting jingle file
This commit is contained in:
parent
8d6fdfbde7
commit
79e174743e
|
@ -507,10 +507,11 @@ public class JingleConnection implements Transferable {
|
||||||
|
|
||||||
respondToIq(packet, true);
|
respondToIq(packet, true);
|
||||||
|
|
||||||
if (mJingleConnectionManager.hasStoragePermission()
|
if (account.getRoster().getContact(from).showInContactList()
|
||||||
|
&& mJingleConnectionManager.hasStoragePermission()
|
||||||
&& size < this.mJingleConnectionManager.getAutoAcceptFileSize()
|
&& size < this.mJingleConnectionManager.getAutoAcceptFileSize()
|
||||||
&& mXmppConnectionService.isDataSaverDisabled()) {
|
&& mXmppConnectionService.isDataSaverDisabled()) {
|
||||||
Log.d(Config.LOGTAG, "auto accepting file from " + packet.getFrom());
|
Log.d(Config.LOGTAG, "auto accepting file from " + from);
|
||||||
this.acceptedAutomatically = true;
|
this.acceptedAutomatically = true;
|
||||||
this.sendAccept();
|
this.sendAccept();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue