Skip to content
This repository was archived by the owner on Apr 12, 2025. It is now read-only.

Commit 909f023

Browse files
committed
feat: enable REPLEX_DISABLE_USER_STATE by default
1 parent 40e4ab2 commit 909f023

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Settings are set via [environment variables](https://kinsta.com/knowledgebase/wh
8282
| REPLEX_EXCLUDE_WATCHED | true | If set to true, hide watched items for hubs. |
8383
| REPLEX_HUB_RESTRICTIONS | true | Apply collections restrictions to their hub's. Plex does not apply restrictions to hubs, so you cannot have different collection hubs for users. this fixes that. |
8484
| REPLEX_DISABLE_CONTINUE_WATCHING | false | Disable/remove the continue watching row |
85-
| REPLEX_DISABLE_USER_STATE | false | Remove unplayed badges from row items |
85+
| REPLEX_DISABLE_USER_STATE | true | Remove unplayed badges from hub items |
8686
| REPLEX_DISABLE_LEAF_COUNT| false | Remove episode count label from show artwork. |
8787
| REPLEX_HERO_ROWS | | Comma seperated list of hubidentifiers to make builtin hubs hero style, options are: <br />home.movies.recent<br />movies.recent <br />movie.recentlyadded<br />movie.topunwatched<br />movie.recentlyviewed<br />hub.movie.recentlyreleased<br />movie.recentlyreleased<br />home.television.recent<br />tv.recentlyadded<br />tv.toprated<br />tv.inprogress<br />tv.recentlyaired |
8888
| REPLEX_FORCE_MAXIMUM_QUALITY | false | This will force clients to use the maximum quality. Meaning that if a client requests anything other then the maximum quality this will be ignored and the maximum quality (direct play/stream when server allows for original) is used instead. This doesn't prevent transcoding. It only sets the bitrate to original quality. So if a client needs a different codec, container or audio it should still transcode.

src/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ pub struct Config {
6666
)]
6767
pub disable_user_state: bool,
6868
#[serde(
69-
default = "default_as_false",
69+
default = "default_as_true",
7070
deserialize_with = "figment::util::bool_from_str_or_int"
7171
)]
7272
pub disable_leaf_count: bool,

0 commit comments

Comments
 (0)