We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b53acc commit 7092597Copy full SHA for 7092597
openandroidinstaller/views/select_view.py
@@ -301,14 +301,10 @@ def get_notes(self) -> str:
301
notes = []
302
303
brand = self.state.config.metadata.get("brand", "")
304
- if brand == "xiaomi":
+ if brand in ["xiaomi", "poco"]:
305
notes.append(
306
"- If something goes wrong, you can reinstall MiUI here:\n<https://xiaomifirmwareupdater.com/>\n"
307
)
308
- elif brand == "poco":
309
- notes.append(
310
- f"- If something goes wrong, you can reinstall MiUI here:\n<https://xiaomifirmwareupdater.com/miui/{self.state.config.device_code}/>\n"
311
- )
312
313
# this should be used as little as possible!
314
if self.state.config.metadata.get("untested", False):
0 commit comments