File tree Expand file tree Collapse file tree
java/org/quantumbadger/redreader/common Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -308,9 +308,15 @@ object General {
308308 if (status == 404 ) {
309309 title = R .string.error_404_title
310310 message = R .string.error_404_message
311- } else {
311+ } else if (status == 403 ) {
312312 title = R .string.error_403_title
313313 message = R .string.error_403_message
314+ } else if (status == 401 ) {
315+ title = R .string.error_401_title
316+ message = R .string.error_401_message
317+ } else {
318+ title = R .string.error_400_title
319+ message = R .string.error_400_message
314320 }
315321 }
316322 }
Original file line number Diff line number Diff line change 19021902 <string name =" album_grid_pref_horizontal_padding" >Horizontal padding</string >
19031903
19041904 <string name =" album_pref_compact_title" >Compact title</string >
1905+
1906+ <!-- 2024-11-24 -->
1907+ <string name =" error_401_title" >Unauthorized</string >
1908+ <string name =" error_401_message" >Reddit says that you are not logged in or have provided invalid credentials.</string >
1909+ <string name =" error_400_title" >Bad Request</string >
1910+ <string name =" error_400_message" >Reddit says that you have submitted something invalid.</string >
19051911</resources >
You can’t perform that action at this time.
0 commit comments