Skip to content

Commit 373b174

Browse files
committed
Fix path of links in /rest/summary.
1 parent 657c66d commit 373b174

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roundup/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ def summary(self, input):
10861086
)
10871087
issue_object = {
10881088
'id': issue_id,
1089-
'link': self.base_path + 'issue' + issue_id,
1089+
'link': self.base_path + '/data/issue/' + issue_id,
10901090
'title': self.db.issue.get(issue_id, 'title')
10911091
}
10921092
for x, ts, uid, action, data in self.db.issue.history(issue_id):

0 commit comments

Comments
 (0)