Fixed categories logo path.

This commit is contained in:
Christian P. MOMON 2024-08-16 23:28:27 +02:00
parent 856aab30c9
commit 3fcb303a91

View file

@ -29,7 +29,7 @@ import fr.devinsy.strings.StringList;
*/
public class Category
{
public static final String DEFAULT_LOGO_PATH = "categories/default.svg";
public static final String DEFAULT_LOGO_PATH = "default.svg";
private String name;
private String technicalName;
@ -218,7 +218,7 @@ public class Category
}
else
{
this.logoPath = "categories/" + logoPath;
this.logoPath = logoPath;
}
}