Avoid attempts to renaming download dirs if name hasn't actually changed

Maybe fixes #9503
This commit is contained in:
arkon
2023-05-14 12:24:40 -04:00
parent a3a9c8ac8e
commit fb38d30775
3 changed files with 10 additions and 6 deletions

View File

@@ -110,6 +110,6 @@ class AndroidSourceManager(
registerStubSource(it)
return it
}
return StubSource(id, "", "")
return StubSource(id = id, lang = "", name = "")
}
}