This commit is contained in:
2024-07-04 14:16:32 +02:00
parent 73b9536109
commit 5ccb93835d
2 changed files with 4 additions and 56 deletions

View File

@ -69,7 +69,7 @@ export function deactivate() { }
* => monitoringserver
*/
function extractProjectName(path: string) {
const match = path.match(/\/root\/(docker|projects)\/([^/]+)/);
const match = path.match(/\/root\/docker\/([^/]+)/);
return match?.[2];
}