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 # to comment.
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', // ... ]