Remove spaces from filename before saving to cache
This commit is contained in:
		| @@ -254,7 +254,10 @@ namespace keepass2android | ||||
| 			if (writeToCacheDirectory) | ||||
| 				binaryDirectory = CacheDir.Path; | ||||
| 		 | ||||
| 			var targetFile = new Java.IO.File(binaryDirectory, key); | ||||
| 			string filepart = key; | ||||
| 			if (writeToCacheDirectory) | ||||
| 				filepart = filepart.Replace(" ", ""); | ||||
| 			var targetFile = new Java.IO.File(binaryDirectory, filepart); | ||||
|  | ||||
| 			Java.IO.File parent = targetFile.ParentFile; | ||||
| 			 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Philipp Crocoll
					Philipp Crocoll