fix(notifications): show thumbnail image in overlay mined-card notificat

- Share generated notification icon between overlay and system notification paths
- Add `image` field to OverlayNotificationPayload; render as IMG with has-image layout
- Widen overlay stack to 420px; enlarge card padding and min-height for image variant
- Show OSD message after successful anilist retry when attempt key already handled
This commit is contained in:
2026-06-04 23:35:37 -07:00
parent 88fa9ba8b5
commit e84825754b
10 changed files with 329 additions and 47 deletions
+4 -1
View File
@@ -194,8 +194,11 @@ export function createMaybeRunAnilistPostWatchUpdateHandler(deps: {
return;
}
await deps.processNextAnilistRetryUpdate();
const retryResult = await deps.processNextAnilistRetryUpdate();
if (deps.hasAttemptedUpdateKey(attemptKey)) {
if (retryResult.ok) {
deps.showMpvOsd(retryResult.message);
}
return;
}