From f57b5a21667383fe2699b9b83733b4dc321f1b2b Mon Sep 17 00:00:00 2001 From: JustArchi Date: Mon, 10 Aug 2020 14:42:50 +0200 Subject: [PATCH] Use unified name instead of full name Handles Class better --- ArchiSteamFarm/IPC/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/IPC/Startup.cs b/ArchiSteamFarm/IPC/Startup.cs index a7dc0f234..df066b6bc 100644 --- a/ArchiSteamFarm/IPC/Startup.cs +++ b/ArchiSteamFarm/IPC/Startup.cs @@ -170,7 +170,7 @@ namespace ArchiSteamFarm.IPC { } ); - options.CustomSchemaIds(type => type.FullName); + options.CustomSchemaIds(type => type.GetUnifiedName()); options.EnableAnnotations(true); options.SchemaFilter();