Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion OATFWGUI/gui_logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def patch_line(in_str: str) -> str:
log.warning('Hot patching oled-ssd1306 revision!!!')
def patch_line(in_str: str) -> str:
if bad_ssd_1306_revision_re.search(in_str):
out_str = bad_ssd_1306_revision_re.sub(r'ClutchplateDude/esp8266-oled-ssd1306#4f596c75', in_str)
out_str = bad_ssd_1306_revision_re.sub(r'ClutchplateDude/esp8266-oled-ssd1306#4.6.2', in_str)
log.warning(f'Replacing {in_str} with {out_str}')
return out_str
else:
Expand Down