From 707a0a5ab2d4fd5eb477fc14743526e67ddb746f Mon Sep 17 00:00:00 2001 From: Alexis DRAI Date: Wed, 21 Sep 2022 13:48:04 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Downgrade=20from=20TODO=20?= =?UTF-8?q?to=20memo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sources/Model/ImageDieFace.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Model/ImageDieFace.cs b/Sources/Model/ImageDieFace.cs index 366acb2..946052a 100644 --- a/Sources/Model/ImageDieFace.cs +++ b/Sources/Model/ImageDieFace.cs @@ -17,7 +17,7 @@ namespace Model { /*parse an int after the last occurrence of "/" ? */ string resultString = uri[(uri.LastIndexOf('/') + 1)..]; - /* TODO here we should make sure to remove any ".jpg" etc, if there was one in the uri*/ + /* !! here we should make sure to remove any ".jpg" etc, if there was one in the uri*/ int result = int.Parse(resultString); Value = result; }