[postgres-Server-V2] Add parameter array to token gen

This commit is contained in:
Alessandro Benetton
2025-01-31 21:24:35 +01:00
parent a713a006dd
commit d6018b60ae
11 changed files with 15 additions and 15 deletions

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;
@ -57,7 +57,7 @@ public class Manga
string? coverFileNameInCache, uint year, string? originalLanguage, MangaReleaseStatus releaseStatus,
float ignoreChapterBefore, string mangaConnectorId)
{
MangaId = TokenGen.CreateToken(typeof(Manga), string.Join(MangaConnectorId, ConnectorId));
MangaId = TokenGen.CreateToken(typeof(Manga), MangaConnectorId, ConnectorId);
ConnectorId = connectorId;
Name = name;
Description = description;