Files
AnilistSync/build.yaml
T
YannikMGandclaude 1e5cf3ef31 AnilistSync 3.0.0.1: revert to bare [Authorize] for Jellyfin 12.0
Jellyfin 12.0 removed the named "DefaultAuthorization" policy; it's now
options.DefaultPolicy (CustomAuthentication scheme + DefaultAuthorizationRequirement).
[Authorize(Policy = "DefaultAuthorization")] therefore threw
InvalidOperationException: "policy not found" on every /AnilistSync/* call.
Bare [Authorize] uses the default policy, which is the intended form.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-10 11:37:22 +02:00

16 lines
522 B
YAML

---
name: "AnilistSync"
guid: "18c2a8ea-afa0-4a0b-aa94-072b492ab80b"
version: "3.0.0.1"
targetAbi: "12.0.0.0"
owner: "ARufenach"
overview: "Scrobble to Anilist"
description: >
Jellyfin plugin to scrobble to Anilist
category: "General"
framework: "net10.0"
artifacts:
- "Jellyfin.Plugin.AnilistSync.dll"
changelog: >
Ported to Jellyfin 12.0 (net10.0, targetAbi 12.0.0.0). Reverted the API controller to a bare [Authorize] — Jellyfin 12.0 removed the named DefaultAuthorization policy in favour of the default policy.