Some small bug fixes #296

Merged
Jef Roosens merged 4 commits from Chewing_Bever/vieter:289-fix into dev 2022-11-07 21:56:44 +01:00
Showing only changes of commit 5542be0418 - Show all commits

View file

@ -32,7 +32,7 @@ fn (mut app App) v1_post_target() web.Result {
// If a repo is created without specifying the arch, we assume it's meant // If a repo is created without specifying the arch, we assume it's meant
// for the default architecture. // for the default architecture.
if 'arch' !in params { if 'arch' !in params || params['arch'] == '' {
params['arch'] = app.conf.default_arch params['arch'] = app.conf.default_arch
} }