diff --git a/Services/WebContent/main.cpp b/Services/WebContent/main.cpp index 2e40fc7798..cf9b9d6771 100644 --- a/Services/WebContent/main.cpp +++ b/Services/WebContent/main.cpp @@ -44,6 +44,10 @@ int main(int, char**) perror("unveil"); return 1; } + if (unveil("/tmp/portal/image", "rw") < 0) { + perror("unveil"); + return 1; + } if (unveil(nullptr, nullptr) < 0) { perror("unveil"); return 1;