enable autoplay videos by default

This commit is contained in:
tibbi 2019-01-02 23:12:00 +01:00
parent a3238a6b95
commit 40f7321064
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ class Config(context: Context) : BaseConfig(context) {
set(includedFolders) = prefs.edit().remove(INCLUDED_FOLDERS).putStringSet(INCLUDED_FOLDERS, includedFolders).apply()
var autoplayVideos: Boolean
get() = prefs.getBoolean(AUTOPLAY_VIDEOS, false)
get() = prefs.getBoolean(AUTOPLAY_VIDEOS, true)
set(autoplay) = prefs.edit().putBoolean(AUTOPLAY_VIDEOS, autoplay).apply()
var animateGifs: Boolean