From 15f74b6570a7f1d3e49a1e247ed4c614b827ea56 Mon Sep 17 00:00:00 2001 From: xRain Date: Sat, 3 Aug 2024 19:21:23 +0800 Subject: [PATCH] fix warning --- Helpers/SimApiStorage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Helpers/SimApiStorage.cs b/Helpers/SimApiStorage.cs index 470def3..bf5adcd 100644 --- a/Helpers/SimApiStorage.cs +++ b/Helpers/SimApiStorage.cs @@ -112,7 +112,7 @@ public class SimApiStorage /// /// /// - public string FullUrl(string path) + public string? FullUrl(string? path) { if (string.IsNullOrEmpty(path)) return path; if(path.StartsWith("http://") || path.StartsWith("https://")) return path;