mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-23 21:27:40 +03:00
Disable explicit nulls for JSON serializer (#7824)
* Disable explicit nulls for JSON serializer * format to multiple lines
This commit is contained in:
parent
2156844b87
commit
3599d53c61
1 changed files with 6 additions and 1 deletions
|
@ -77,7 +77,12 @@ class AppModule(val app: Application) : InjektModule {
|
|||
|
||||
addSingletonFactory<DatabaseHandler> { AndroidDatabaseHandler(get(), get()) }
|
||||
|
||||
addSingletonFactory { Json { ignoreUnknownKeys = true } }
|
||||
addSingletonFactory {
|
||||
Json {
|
||||
ignoreUnknownKeys = true
|
||||
explicitNulls = false
|
||||
}
|
||||
}
|
||||
|
||||
addSingletonFactory { PreferencesHelper(app) }
|
||||
|
||||
|
|
Loading…
Reference in a new issue