Fix missing string resource that has been renamed

This commit is contained in:
MM20 2022-02-19 16:13:30 +01:00
parent a412c62c35
commit efcd9d3fff
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -29,7 +29,7 @@ abstract class Searchable : Comparable<Searchable> {
context.startActivity(intent, options)
true
} catch (e: ActivityNotFoundException) {
Toast.makeText(context, context.getString(R.string.activity_not_found_searchable, label), Toast.LENGTH_SHORT).show()
Toast.makeText(context, context.getString(R.string.error_activity_not_found, label), Toast.LENGTH_SHORT).show()
false
}
}