Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
RunOnFluxBot committed Dec 9, 2024
1 parent 6ba6fab commit ffe9989
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/appsService.js
Original file line number Diff line number Diff line change
Expand Up @@ -4551,10 +4551,10 @@ async function getGlobalAppsSpecifications(req, res) {
query.hash = hash;
}
if (owner) {
query['appSpecifications.owner'] = owner;
query.owner = owner;
}
if (appname) {
query['appSpecifications.name'] = appname;
query.name = appname;
}
const projection = { projection: { _id: 0 } };
const results = await dbHelper.findInDatabase(database, globalAppsInformation, query, projection);
Expand Down

0 comments on commit ffe9989

Please sign in to comment.