diff --git a/src/conversationmodel.cpp b/src/conversationmodel.cpp index 8720c6ca3dc1fe60f64703c8b7e9b47a9cddb455..b72fee841787dddebd0af6339ba1d65084896576 100644 --- a/src/conversationmodel.cpp +++ b/src/conversationmodel.cpp @@ -2192,7 +2192,7 @@ ConversationModelPimpl::slotTransferStatusAwaitingHost(long long dringId, datatr return; } // If it's an accepted file type and less than 20 MB, accept transfer. - if (info.totalSize < 20 * 1024 * 1024 && info.displayName.contains(".")) { + if (info.totalSize < 20 * 1024 * 1024) { acceptTransfer(convId, interactionId, info.displayName); } }