added more logging for file deletion
This commit is contained in:
		
							parent
							
								
									3409399ef1
								
							
						
					
					
						commit
						82908fb54b
					
				| @ -1287,12 +1287,14 @@ public class XmppConnectionService extends Service { | ||||
| 	} | ||||
| 
 | ||||
| 	private void markFileDeleted(final String path) { | ||||
| 		Log.d(Config.LOGTAG,"deleted file "+path); | ||||
| 		for (Conversation conversation : getConversations()) { | ||||
| 			conversation.findMessagesWithFiles(new Conversation.OnMessageFound() { | ||||
| 				@Override | ||||
| 				public void onMessageFound(Message message) { | ||||
| 					DownloadableFile file = fileBackend.getFile(message); | ||||
| 					if (file.getAbsolutePath().equals(path) && !file.exists()) { | ||||
| 					if (file.getAbsolutePath().equals(path)) { | ||||
| 						if (file.exists()) { | ||||
| 							message.setTransferable(new TransferablePlaceholder(Transferable.STATUS_DELETED)); | ||||
| 							final int s = message.getStatus(); | ||||
| 							if (s == Message.STATUS_WAITING || s == Message.STATUS_OFFERED || s == Message.STATUS_UNSEND) { | ||||
| @ -1300,6 +1302,9 @@ public class XmppConnectionService extends Service { | ||||
| 							} else { | ||||
| 								updateConversationUi(); | ||||
| 							} | ||||
| 						} else { | ||||
| 							Log.d(Config.LOGTAG,"found matching message for file "+path+" but file still exists"); | ||||
| 						} | ||||
| 					} | ||||
| 				} | ||||
| 			}); | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Daniel Gultsch
						Daniel Gultsch