diff --git a/Iceshrimp.Backend/Core/Database/Tables/Note.cs b/Iceshrimp.Backend/Core/Database/Tables/Note.cs index d1b9fa54..e4bf87ee 100644 --- a/Iceshrimp.Backend/Core/Database/Tables/Note.cs +++ b/Iceshrimp.Backend/Core/Database/Tables/Note.cs @@ -108,7 +108,7 @@ public class Note : IEntity { public List Mentions { get; set; } = []; [Column("mentionedRemoteUsers", TypeName = "jsonb")] - public List MentionedRemoteUsers { get; set; } = []; + public List MentionedRemoteUsers { get; set; } = []; [Column("emojis", TypeName = "character varying(128)[]")] public List Emojis { get; set; } = []; diff --git a/Iceshrimp.Backend/Core/Extensions/QueryableExtensions.cs b/Iceshrimp.Backend/Core/Extensions/QueryableExtensions.cs index 216a3293..471d9e91 100644 --- a/Iceshrimp.Backend/Core/Extensions/QueryableExtensions.cs +++ b/Iceshrimp.Backend/Core/Extensions/QueryableExtensions.cs @@ -1,5 +1,3 @@ -using System.Linq.Expressions; -using System.Text; using Iceshrimp.Backend.Controllers.Attributes; using Iceshrimp.Backend.Controllers.Mastodon.Renderers; using Iceshrimp.Backend.Controllers.Mastodon.Schemas; diff --git a/Iceshrimp.Backend/Core/Services/UserService.cs b/Iceshrimp.Backend/Core/Services/UserService.cs index 42070124..d8671ef3 100644 --- a/Iceshrimp.Backend/Core/Services/UserService.cs +++ b/Iceshrimp.Backend/Core/Services/UserService.cs @@ -12,8 +12,6 @@ using Iceshrimp.Backend.Core.Helpers; using Iceshrimp.Backend.Core.Helpers.LibMfm.Conversion; using Iceshrimp.Backend.Core.Middleware; using Microsoft.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using Microsoft.Extensions.Caching.Distributed; using Microsoft.Extensions.Options; namespace Iceshrimp.Backend.Core.Services; diff --git a/Iceshrimp.Backend/Pages/OAuth/Authorize.cshtml.cs b/Iceshrimp.Backend/Pages/OAuth/Authorize.cshtml.cs index bdc03826..1ea98bfe 100644 --- a/Iceshrimp.Backend/Pages/OAuth/Authorize.cshtml.cs +++ b/Iceshrimp.Backend/Pages/OAuth/Authorize.cshtml.cs @@ -25,7 +25,7 @@ public class AuthorizeModel(DatabaseContext db) : PageModel { public List Scopes = []; public OauthApp App = null!; - public OauthToken? Token = null; + public OauthToken? Token; public async Task OnGet() { if (ResponseType == null || ClientId == null || RedirectUri == null)