Even if it doesn’t automatically resubscribe you I’m guessing lot of people as they use lemmy or kbin will be moving around from instances a lot.
So being able to keep track of which communities to resubscribe to would be really convenient to have.
You must log in or register to comment.
There are some folks who are trying to build this as a batch script on GitHub while we wait for the functionality to be available in base Lemmy.
That’s a neat script that I can confirm works well. Great that they’re implementing this in base Lemmy.
You could do that now if you’re comfortable opening the browser dev console.
In the page listing your communities you can run:[...document.querySelectorAll('a[title^="!"]')].map(elem => elem.href).sort()
and it’ll output something like
[ 'https://lemmy.ml/c/android', 'https://lemmy.ml/c/animals@beehaw.org', // ... ]