[postgres-Server-V2] fix(Manga): Was using properties before initialization

This commit is contained in:
Alessandro Benetton 2025-02-01 22:16:12 +01:00
parent 45ca2695eb
commit a69e12179b
No known key found for this signature in database
GPG Key ID: ED63A304CE2C0303

View File

@ -1,4 +1,4 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Runtime.InteropServices;
using System.Text.RegularExpressions;
@ -58,7 +58,7 @@ public class Manga
string? coverFileNameInCache, uint year, string? originalLanguage, MangaReleaseStatus releaseStatus,
float ignoreChapterBefore, string mangaConnectorId)
{
MangaId = TokenGen.CreateToken(typeof(Manga), MangaConnectorId, ConnectorId);
MangaId = TokenGen.CreateToken(typeof(Manga), mangaConnectorId, connectorId);
ConnectorId = connectorId;
Name = name;
Description = description;