mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-09-04 03:47:55 +00:00
Fix compile error caused by auto merging
#5176 changed `homeDir` from type `String` to `File`. #5059 was based on `homeDir` being a `String`. It was incorrectly auto-resolved by git.
This commit is contained in:
@@ -15,9 +15,9 @@ class ContentSettingsManager(
|
||||
private val newpipeSettings: File
|
||||
) {
|
||||
|
||||
constructor(homeDir: String) : this(
|
||||
File("$homeDir/databases/newpipe.db"),
|
||||
File("$homeDir/databases/newpipe.settings")
|
||||
constructor(homeDir: File) : this(
|
||||
File(homeDir, "databases/newpipe.db"),
|
||||
File(homeDir, "databases/newpipe.settings")
|
||||
)
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user