4th try fixing nginx

This commit is contained in:
Blatzar 2022-08-19 00:16:14 +02:00
parent f398684d0f
commit 9a532695e2
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 {
val id = plugin.resources!!.getIdentifier(name, "string", "com.lagradost")
val id = plugin.resources!!.getIdentifier(name, "string", "com.lagradost.cloudstream3")
return this.getString(id)
}
private fun getAttr(name: String): Int {
return plugin.resources!!.getIdentifier(name, "attr", "com.lagradost")
return plugin.resources!!.getIdentifier(name, "attr", "com.lagradost.cloudstream3")
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {