Skip to content

Commit 702b4ed

Browse files
authored
Merge pull request #134 from Skgland/patch-1
Fix /queue/all
2 parents 963762a + 0e1155c commit 702b4ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

homu/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def result(repo_label, pull):
117117

118118
@get('/queue/<repo_label:path>')
119119
def queue(repo_label):
120-
if repo_label not in g.cfg['repo']:
120+
if repo_label not in g.cfg['repo'] and repo_label != 'all':
121121
abort(404)
122122

123123
logger = g.logger.getChild('queue')

0 commit comments

Comments
 (0)