nbspRemover [Official Support]

Hi @kleinerpirat!

I love your addon! Thanks so much for making it!

Since Friday however it just stopped working, I edited the collection.py file today to below and now it’s working again.

def clean_collection() -> None:
    op = find_and_replace(
                parent=mw,
                note_ids=[],
                search=r"\u00A0",
                replacement=" ",
                regex=True,
                field_name=None,
                match_case=True,
            )
    op.success(
                lambda out: purge_tooltip(mw, out.count)
            )
    op.run_in_background()

Do you know why this happened? Also did I do it correctly or am I going to run into issues with doing it this way?

1 Like