remove the first - in the path to the db instance in the instance-id

This commit is contained in:
Tamo 2021-10-27 17:52:53 +02:00 committed by marin postma
parent d8b0d68840
commit b250392e8d
No known key found for this signature in database
GPG Key ID: 6088B7721C3E39F9

View File

@ -27,7 +27,7 @@ fn config_user_id_path(db_path: &Path) -> Option<PathBuf> {
.replace("/", "-")
})
.zip(MEILISEARCH_CONFIG_PATH.as_ref())
.map(|(filename, config_path)| config_path.join(filename))
.map(|(filename, config_path)| config_path.join(filename.trim_start_matches('-')))
}
/// Look for the instance-uid in the `data.ms` or in `~/.config/MeiliSearch/path-to-db-instance-uid`