turn on disable external id parsing for episodes by default.

This commit is contained in:
Abdulmhsen B. A. A
2022-07-07 21:46:46 +03:00
parent 3356955c12
commit 945b1a89e4
2 changed files with 2 additions and 2 deletions

2
FAQ.md
View File

@@ -321,7 +321,7 @@ it's slower than `MemoryMapper`.
| WS_LOGGER_FILE_ENABLE | bool | Save logs to file. | `true` |
| WS_LOGGER_FILE_LEVEL | string | File Logger Level. | `ERROR` |
| WS_WEBHOOK_DEBUG | bool | If enabled, allow dumping request/webhook using `rdump` & `wdump` parameters. | `false` |
| WS_EPISODES_DISABLE_GUID | bool | Disable external id parsing for episodes and rely on relative ids. | `false` |
| WS_EPISODES_DISABLE_GUID | bool | Disable external id parsing for episodes and rely on relative ids. | `true` |
Note for environment variables that has `{TASK}` you should replace it with one
of `IMPORT`, `EXPORT`, `PUSH`, `BACKUP`, `PRUNE`, `INDEXES`. To see tasks active settings run

View File

@@ -37,7 +37,7 @@ return (function () {
],
'episodes' => [
'disable' => [
'guid' => (bool)env('WS_EPISODES_DISABLE_GUID', false),
'guid' => (bool)env('WS_EPISODES_DISABLE_GUID', true),
]
],
'ignore' => [],