mirror of
https://github.com/HeyPuter/puter
synced 2024-11-14 22:06:00 +00:00
fix: phoenix incorrect lookup order
This commit is contained in:
parent
891e799e5e
commit
c8f913d710
@ -35,7 +35,7 @@ export class CompositeCommandProvider {
|
|||||||
for (const provider of this.providers) {
|
for (const provider of this.providers) {
|
||||||
const commands = await provider.lookupAll(...a);
|
const commands = await provider.lookupAll(...a);
|
||||||
if ( commands ) {
|
if ( commands ) {
|
||||||
results.push(...commands);
|
results.unshift(...commands);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user