Skip to content

Commit

Permalink
fix govna
Browse files Browse the repository at this point in the history
  • Loading branch information
AwareFoxy authored Dec 5, 2024
1 parent 127e69d commit 4f8a525
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public override void HandleMessage(EuiMessageBase msg)
break;
case AdminAudioPanelEuiMessage.AddTrack addTrack:
var filename = addTrack.Filename.Trim();
if (_resourceManager.ContentFileExists(filename))
if (_resourceManager.ContentFileExists(new ResPath(filename).ToRootedPath()))

Check failure on line 97 in Content.Server/_CorvaxNext/Administration/UI/Audio/AdminAudioPanelEui.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

The type or namespace name 'ResPath' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 97 in Content.Server/_CorvaxNext/Administration/UI/Audio/AdminAudioPanelEui.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

The type or namespace name 'ResPath' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 97 in Content.Server/_CorvaxNext/Administration/UI/Audio/AdminAudioPanelEui.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

The type or namespace name 'ResPath' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 97 in Content.Server/_CorvaxNext/Administration/UI/Audio/AdminAudioPanelEui.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

The type or namespace name 'ResPath' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 97 in Content.Server/_CorvaxNext/Administration/UI/Audio/AdminAudioPanelEui.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'ResPath' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 97 in Content.Server/_CorvaxNext/Administration/UI/Audio/AdminAudioPanelEui.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'ResPath' could not be found (are you missing a using directive or an assembly reference?)
_audioPanel.AddToQueue(filename);
break;
case AdminAudioPanelEuiMessage.SetVolume setVolume:
Expand Down

0 comments on commit 4f8a525

Please sign in to comment.