feat(web-ui): add browse feature to find directories/executables/files (#4848)

This commit is contained in:
David Lane
2026-03-13 22:55:04 -04:00
committed by GitHub
parent b3f0e2370c
commit e836354e5a
7 changed files with 1113 additions and 10 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ class ProcessPNGTest: public ::testing::Test {
protected:
void SetUp() override {
// Create test directory
test_dir = fs::temp_directory_path() / "sunshine_process_png_test";
test_dir = fs::temp_directory_path() / "sunshine_process_png_test"; // NOSONAR(cpp:S5443) - safe for tests
fs::create_directories(test_dir);
}