Skip to content

Commit 9556c35

Browse files
committed
Fix warnings
1 parent 87860cd commit 9556c35

3 files changed

Lines changed: 7 additions & 9 deletions

File tree

.github/workflows/build-and-deploy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ jobs:
5353
if: runner.os == 'macOS'
5454
run: |
5555
set -euo pipefail
56+
# The runner image ships an untrusted tap that brew now warns about on every call.
57+
brew untap aws/tap 2>/dev/null || true
5658
brew install mkvtoolnix ffmpeg
5759
# Production and the other runners are on ffmpeg 8.1; fail fast if
5860
# brew is behind (the MP4 udta.name round-trip is broken pre-8.0).
Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
@using Muxarr.Data
22

3-
@* Decided once at startup; the log is easy to miss, so an install still on /data gets a permanent bar. *@
43
@if (ContainerAppData.State == AppDataState.LegacyLocation)
54
{
6-
<div class="alert alert-warning d-flex align-items-start gap-2 mb-3" role="alert">
7-
<i class="bi bi-exclamation-triangle-fill mt-1"></i>
8-
<div>
9-
<strong>Muxarr now keeps its database in <code>/config</code>, but this install still runs from <code>/data</code>.</strong>
10-
<span> Mount your appdata folder at <code>:/config</code> instead of <code>:/data</code> and restart. If it lives in a Docker volume, copy it out first. Nothing is moved automatically.</span>
11-
<a class="ms-1" href="https://muxarr.app/docs/faq.html#appdata" target="_blank" rel="noopener">How to fix</a>
12-
</div>
5+
<div class="alert alert-warning py-2 small mb-3" role="alert">
6+
<i class="bi bi-info-circle me-1"></i>
7+
Muxarr moved its appdata to <code>/config</code>, the same layout as the linuxserver containers. This install still runs from <code>/data</code>, which keeps working; when you have a minute, mount your appdata folder at <code>:/config</code> instead of <code>:/data</code> and restart.
8+
<a href="https://muxarr.app/docs/faq.html#appdata" target="_blank" rel="noopener">How to</a>
139
</div>
1410
}

Muxarr.Web/Components/Shared/Modals/NotificationEditModal.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
{
5656
<input type="@(field.Type == FieldType.Url ? "url" : "text")" class="form-control"
5757
@bind:get="Config.Settings.GetValueOrDefault(name, string.Empty)"
58-
@bind:set="@((string v) => Config.Settings[name] = v)"
58+
@bind:set="@(v => Config.Settings[name] = v ?? string.Empty)"
5959
placeholder="@field.Placeholder"/>
6060
}
6161
@if (!string.IsNullOrEmpty(field.HelpText))

0 commit comments

Comments
 (0)