feat(YouTube Music/Spoof app version): add target version 7.16.53

This commit is contained in:
inotia00
2024-10-03 22:41:58 +09:00
parent 6360f97e54
commit 3edd8eb43c
5 changed files with 13 additions and 23 deletions

View File

@ -258,7 +258,10 @@ internal fun NodeList.findElementByAttributeValue(attributeName: String, value:
return null
}
internal fun NodeList.findElementByAttributeValueOrThrow(attributeName: String, value: String): Element {
internal fun NodeList.findElementByAttributeValueOrThrow(
attributeName: String,
value: String
): Element {
return findElementByAttributeValue(attributeName, value)
?: throw PatchException("Could not find: $attributeName $value")
}