test: Added download test and made app more testable in general
fix: Store Downloads not properly working on steam deck fix: Removed linux shortcuts implementation
This commit is contained in:
parent
58d3c31c56
commit
8a0be8c913
26 changed files with 422 additions and 210 deletions
|
|
@ -348,13 +348,7 @@ export default new Elysia()
|
|||
{
|
||||
if (!taskQueue.findJob(InstallJob.query({ source, id }), InstallJob))
|
||||
{
|
||||
if (source === 'romm' || source === 'store')
|
||||
{
|
||||
taskQueue.enqueue(InstallJob.query({ source, id }), new InstallJob(id, source));
|
||||
return status(200);
|
||||
}
|
||||
|
||||
return status('Not Implemented');
|
||||
return taskQueue.enqueue(InstallJob.query({ source, id }), new InstallJob(id, source));
|
||||
} else
|
||||
{
|
||||
return status('Not Implemented');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue