mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
Fix nonTransferableKeys in BackupUtils (#979)
* Fix nonTransferableKeys in BackupUtils * Whoops... * really...
This commit is contained in:
parent
807bd85fa9
commit
a01bb9e55b
1 changed files with 8 additions and 5 deletions
|
@ -65,13 +65,16 @@ object BackupUtils {
|
||||||
PLUGINS_KEY_LOCAL,
|
PLUGINS_KEY_LOCAL,
|
||||||
|
|
||||||
OPEN_SUBTITLES_USER_KEY,
|
OPEN_SUBTITLES_USER_KEY,
|
||||||
"nginx_user", // Nginx user key
|
|
||||||
"biometric_key" // can lock down users if backup is shared on a incompatible device
|
DOWNLOAD_EPISODE_CACHE,
|
||||||
|
|
||||||
|
"biometric_key", // can lock down users if backup is shared on a incompatible device
|
||||||
|
"nginx_user" // Nginx user key
|
||||||
)
|
)
|
||||||
|
|
||||||
/** false if blacklisted key */
|
/** false if key should not be contained in backup */
|
||||||
private fun String.isTransferable(): Boolean {
|
private fun String.isTransferable(): Boolean {
|
||||||
return !nonTransferableKeys.contains(this)
|
return !nonTransferableKeys.any { this.contains(it) }
|
||||||
}
|
}
|
||||||
|
|
||||||
private var restoreFileSelector: ActivityResultLauncher<Array<String>>? = null
|
private var restoreFileSelector: ActivityResultLauncher<Array<String>>? = null
|
||||||
|
|
Loading…
Reference in a new issue