mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-01 05:48:22 +03: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:
parent
7e469ead45
commit
a7723373a0
1 changed files with 3 additions and 3 deletions
|
@ -15,9 +15,9 @@ class ContentSettingsManager(
|
||||||
private val newpipeSettings: File
|
private val newpipeSettings: File
|
||||||
) {
|
) {
|
||||||
|
|
||||||
constructor(homeDir: String) : this(
|
constructor(homeDir: File) : this(
|
||||||
File("$homeDir/databases/newpipe.db"),
|
File(homeDir, "databases/newpipe.db"),
|
||||||
File("$homeDir/databases/newpipe.settings")
|
File(homeDir, "databases/newpipe.settings")
|
||||||
)
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue