fix: fix kebab-case and more stuff

This commit is contained in:
josesilveira 2022-04-11 20:17:41 -03:00
parent ba04fbbc65
commit 474f730ee5
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ class Main {
.maxHint(1)
.setExtraMessage("Initializing")
if(downloadSignatures) SignatureDownloader.download("youtube.signatures.json") // Not tested due private repos + not merged branches.
if (downloadSignatures) SignatureDownloader.download("youtube.signatures.json") // Not tested due private repos + not merged branches.
val apk = Preconditions.isFile(inApk)
val signatures = Preconditions.isFile(inSignatures)

View File

@ -13,7 +13,7 @@ object SignatureDownloader {
val file = File(out)
if(!file.exists()) {
if (!file.exists()) {
url.openStream().use { Files.copy(it, Paths.get(out)) }
}