From fb03fc073a38296602a52cc9c9899099d818f915 Mon Sep 17 00:00:00 2001 From: Chimo Date: Sun, 15 Feb 2015 16:00:23 -0500 Subject: [PATCH] ApiTimelineList: Fixes ServerErrorAction "No matches for action 'ApiTimelineList' with arguments 'format=atom id=1'" for 'api/:user/lists/:id/statuses.:format' URLs --- lib/apiaction.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/apiaction.php b/lib/apiaction.php index d85029f433..5cebce33da 100755 --- a/lib/apiaction.php +++ b/lib/apiaction.php @@ -1516,6 +1516,11 @@ class ApiAction extends Action $aargs['id'] = $id; } + $user = $this->arg('user'); + if (!empty($user)) { + $aargs['user'] = $user; + } + $tag = $this->arg('tag'); if (!empty($tag)) { $aargs['tag'] = $tag; -- 2.39.2