add space to filename regex

This commit is contained in:
Lilian Jónsdóttir 2024-02-11 17:43:51 -08:00
parent ba36cba7bf
commit fd280ba2e8

View file

@ -10,7 +10,7 @@ import (
)
// fileRegex matches
const fileRegex string = "([\\w-]+)_([0-9.]+).zip"
const fileRegex string = "([\\w\\s-]+)_([0-9.]+)\\.zip"
/// Modlist types and related functions.