Changing "status" to always be lowercase

This commit is contained in:
ilumos 2017-08-16 23:40:28 +01:00
parent 31ae989b8c
commit 66760ae323

2
src/Console/Commands/Steam/QueueApp.php Normal file → Executable file
View file

@ -51,7 +51,7 @@ class QueueApp extends Command
Capsule::table('steam_queue')->insert([ Capsule::table('steam_queue')->insert([
'appid' => $app->appid, 'appid' => $app->appid,
'name' => $app->name, 'name' => $app->name,
'status'=> 'Queued' 'status'=> 'queued'
]); ]);
$this->info('Steam app "' . $app->name .'" added to download queue'); $this->info('Steam app "' . $app->name .'" added to download queue');