From 9679001a2b4e5f9c25314ecb6f5d3cfd1102da02 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Mon, 6 May 2024 22:37:26 +0200 Subject: [PATCH] [backend/masto-client] Fix compatibility with latest masto-fe-standalone --- .../Controllers/Mastodon/Schemas/Entities/TagEntity.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Iceshrimp.Backend/Controllers/Mastodon/Schemas/Entities/TagEntity.cs b/Iceshrimp.Backend/Controllers/Mastodon/Schemas/Entities/TagEntity.cs index 0d3dbdeb..2fe152da 100644 --- a/Iceshrimp.Backend/Controllers/Mastodon/Schemas/Entities/TagEntity.cs +++ b/Iceshrimp.Backend/Controllers/Mastodon/Schemas/Entities/TagEntity.cs @@ -4,8 +4,8 @@ namespace Iceshrimp.Backend.Controllers.Mastodon.Schemas.Entities; public class TagEntity { - [J("name")] public required string Name { get; set; } - [J("url")] public required string Url { get; set; } - [J("following")] public required bool Following { get; set; } - [J("history")] public object? History => null; + [J("name")] public required string Name { get; set; } + [J("url")] public required string Url { get; set; } + [J("following")] public required bool Following { get; set; } + [J("history")] public object History => new(); } \ No newline at end of file