From fcc3707210a28ec32f6b21145538e230eb6fb633 Mon Sep 17 00:00:00 2001 From: Dag Date: Wed, 11 May 2022 22:37:59 +0200 Subject: [PATCH] refactor: swap the order of sprintf values --- lib/contents.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/contents.php b/lib/contents.php index 7e0fc2ce..012c1c26 100644 --- a/lib/contents.php +++ b/lib/contents.php @@ -105,8 +105,8 @@ function getContents( throw new HttpException( sprintf( '%s %s', - RSSBRIDGE_HTTP_STATUS_CODES[$result['code']] ?? $result['code'], - $result['code'] + $result['code'], + RSSBRIDGE_HTTP_STATUS_CODES[$result['code']] ?? $result['code'] ) ); }