Skip to content

Commit 85cd0e8

Browse files
authored
Fix /queue/all
1 parent 963762a commit 85cd0e8

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)