[PR #2922] [CLOSED] Item Refresh Service to Jellyfin.API #9275

Closed
opened 2026-02-07 05:59:17 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jellyfin/jellyfin/pull/2922
Author: @crobibero
Created: 4/19/2020
Status: Closed

Base: api-migrationHead: api-item-refresh


📝 Commits (10+)

  • 4395644 Translated using Weblate (Czech)
  • 585e9e6 Translated using Weblate (Hebrew)
  • d9e2f56 Merge pull request #3037 from ConfusedPolarBear/access-control
  • bfb644d Fix nullref exception
  • f18293b Switch to BlurHashSharp lib which should be faster
  • a226a4e Compute hash only when one is not computed in DB, small optimizations here and there
  • 186b7f3 More small optimizations
  • 2b1ae7a Fix code smells
  • c4f8ba5 Rename to AttachmentsController -> VideoAttachmentsController
  • 45d750f Move AttachmentsService to AttachmentsController

📊 Changes

1025 files changed (+21566 additions, -10496 deletions)

View changed files

📝 .ci/azure-pipelines-abi.yml (+21 -28)
📝 .ci/azure-pipelines-main.yml (+42 -49)
📝 .ci/azure-pipelines-test.yml (+46 -18)
📝 .ci/azure-pipelines.yml (+12 -12)
.copr/Makefile (+0 -59)
.copr/Makefile (+1 -0)
📝 .editorconfig (+7 -10)
.github/CODEOWNERS (+3 -0)
.github/dependabot.yml (+9 -0)
📝 .gitignore (+12 -7)
📝 .vscode/tasks.json (+11 -1)
📝 Dockerfile (+1 -1)
📝 Dockerfile.arm (+1 -1)
📝 DvdLib/BigEndianBinaryReader.cs (+2 -0)
📝 DvdLib/DvdLib.csproj (+6 -0)
📝 DvdLib/Ifo/Cell.cs (+2 -0)
📝 DvdLib/Ifo/CellPlaybackInfo.cs (+2 -0)
📝 DvdLib/Ifo/CellPositionInfo.cs (+2 -0)
📝 DvdLib/Ifo/Chapter.cs (+2 -0)
📝 DvdLib/Ifo/Dvd.cs (+2 -0)

...and 80 more files

📄 Description

Changes
Migrated the ItemRefreshService.cs from MediaBrowser.Api to Jellyfin.Api which is using ASP.NET WebAPI.
Issues
Part of #2872


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/jellyfin/jellyfin/pull/2922 **Author:** [@crobibero](https://github.com/crobibero) **Created:** 4/19/2020 **Status:** ❌ Closed **Base:** `api-migration` ← **Head:** `api-item-refresh` --- ### 📝 Commits (10+) - [`4395644`](https://github.com/jellyfin/jellyfin/commit/4395644efcf3ae25fd657a5cbdd7db0a0fffa9df) Translated using Weblate (Czech) - [`585e9e6`](https://github.com/jellyfin/jellyfin/commit/585e9e6220c50bac5c224ac1ee3a90ce625ef3c6) Translated using Weblate (Hebrew) - [`d9e2f56`](https://github.com/jellyfin/jellyfin/commit/d9e2f56bd2c77224c5d45b1e164e0cacc9551968) Merge pull request #3037 from ConfusedPolarBear/access-control - [`bfb644d`](https://github.com/jellyfin/jellyfin/commit/bfb644d5f50fff9fd8ba5fe4504c73ec5be851af) Fix nullref exception - [`f18293b`](https://github.com/jellyfin/jellyfin/commit/f18293bf762c86581153ab8d9b1b6267421178a9) Switch to BlurHashSharp lib which should be faster - [`a226a4e`](https://github.com/jellyfin/jellyfin/commit/a226a4ee03d974615a6fa26b936a93458a255b70) Compute hash only when one is not computed in DB, small optimizations here and there - [`186b7f3`](https://github.com/jellyfin/jellyfin/commit/186b7f303cd6f95ca64e020c2838dfe2028ea54c) More small optimizations - [`2b1ae7a`](https://github.com/jellyfin/jellyfin/commit/2b1ae7ac5834054866aa485b18f85f1793f7b8b4) Fix code smells - [`c4f8ba5`](https://github.com/jellyfin/jellyfin/commit/c4f8ba55f2b3424be4a6ff1044d13327fe36b687) Rename to AttachmentsController -> VideoAttachmentsController - [`45d750f`](https://github.com/jellyfin/jellyfin/commit/45d750f10657da8f7914999098ecffcdbfedbd2d) Move AttachmentsService to AttachmentsController ### 📊 Changes **1025 files changed** (+21566 additions, -10496 deletions) <details> <summary>View changed files</summary> 📝 `.ci/azure-pipelines-abi.yml` (+21 -28) 📝 `.ci/azure-pipelines-main.yml` (+42 -49) 📝 `.ci/azure-pipelines-test.yml` (+46 -18) 📝 `.ci/azure-pipelines.yml` (+12 -12) ➖ `.copr/Makefile` (+0 -59) ➕ `.copr/Makefile` (+1 -0) 📝 `.editorconfig` (+7 -10) ➕ `.github/CODEOWNERS` (+3 -0) ➕ `.github/dependabot.yml` (+9 -0) 📝 `.gitignore` (+12 -7) 📝 `.vscode/tasks.json` (+11 -1) 📝 `Dockerfile` (+1 -1) 📝 `Dockerfile.arm` (+1 -1) 📝 `DvdLib/BigEndianBinaryReader.cs` (+2 -0) 📝 `DvdLib/DvdLib.csproj` (+6 -0) 📝 `DvdLib/Ifo/Cell.cs` (+2 -0) 📝 `DvdLib/Ifo/CellPlaybackInfo.cs` (+2 -0) 📝 `DvdLib/Ifo/CellPositionInfo.cs` (+2 -0) 📝 `DvdLib/Ifo/Chapter.cs` (+2 -0) 📝 `DvdLib/Ifo/Dvd.cs` (+2 -0) _...and 80 more files_ </details> ### 📄 Description Changes Migrated the ItemRefreshService.cs from MediaBrowser.Api to Jellyfin.Api which is using ASP.NET WebAPI. Issues Part of #2872 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-07 05:59:17 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#9275