CORE-23734: Refactoring

This commit is contained in:
phoenix
2025-02-06 20:09:43 -05:00
parent 8f6350a3dc
commit 6bff36bc03
3 changed files with 4 additions and 12 deletions
+2 -2
View File
@@ -6,6 +6,6 @@ namespace Icarus.Models;
public enum CreateFileResult
{
Unknwon = 0,
AlreadyExists = 1,
FileCreatedAndExists = 2
AlreadyExists = 1,
FileCreatedAndExists = 2
}
+1 -1
View File
@@ -80,7 +80,7 @@ public class Song
{
var fullPath = SongDirectory;
if (fullPath![fullPath.Length -1] != '/')
if (fullPath![fullPath.Length - 1] != '/')
{
fullPath += "/";
}