Second try fixing nginx

This commit is contained in:
Blatzar 2022-08-18 23:55:11 +02:00
parent 8c8be65146
commit 593c2fc4fe
1 changed files with 2 additions and 2 deletions

View File

@ -41,12 +41,12 @@ class NginxSettingsFragment(private val plugin: Plugin, val nginxApi: NginxApi)
} }
private fun getString(name: String): String { private fun getString(name: String): String {
val id = this.resources.getIdentifier(name, "string", "com.lagradost") val id = this.resources.getIdentifier(name, "string", "com.lagradost.cloudstream3")
return this.getString(id) return this.getString(id)
} }
private fun getAttr(name: String): Int { private fun getAttr(name: String): Int {
return this.resources.getIdentifier(name, "attr", "com.lagradost") return this.resources.getIdentifier(name, "attr", "com.lagradost.cloudstream3")
} }
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { override fun onViewCreated(view: View, savedInstanceState: Bundle?) {