[chronojump] networks when download person image, delete the image in other extension if exists
- From: Xavier de Blas <xaviblas src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [chronojump] networks when download person image, delete the image in other extension if exists
- Date: Tue, 27 Jul 2021 13:32:21 +0000 (UTC)
commit d975993b8e694cb2ec26c1bb5bcd4d4e8f1d2c6a
Author: Xavier de Blas <xaviblas gmail com>
Date: Tue Jul 27 15:31:51 2021 +0200
networks when download person image, delete the image in other extension if exists
src/gui/networks.cs | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/src/gui/networks.cs b/src/gui/networks.cs
index a55fa2444..cc186809f 100644
--- a/src/gui/networks.cs
+++ b/src/gui/networks.cs
@@ -751,8 +751,6 @@ public partial class ChronoJumpWindow
// 2.1.3 code, rfids can be reassigned to a new person
// a wristband of a new player has been introduced, but this wristband we had
previously locally assigned to another player
- // 1 delete rfid on previous person
- // 2 create new person with the server rfid, personSession
// 1 delete rfid on previous person
SqlitePerson.UpdateRFID (pLocal.UniqueID, "");
@@ -884,6 +882,12 @@ public partial class ChronoJumpWindow
Path.Combine(Path.GetTempPath(), personID.ToString()),
image_dest,
true); //overwrite
+
+ //find if there is an image with the other extension and delete it
+ if(UtilMultimedia.GetImageType(url) == UtilMultimedia.ImageTypes.PNG)
+ Util.FileDelete (Util.GetPhotoFileName(false, personID)); //our file is a png, delete
the jpg if exists
+ else
+ Util.FileDelete (Util.GetPhotoPngFileName(false, personID)); //our file is a jpg,
delete the png if exists
}
//get destination file of the image: multimedia/photos/uniqueID. (jpg or png)
private string compujumpDownloadImageGetDest (string linkServerImage, int personID)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]