dd05ee3a65
Co-authored-by: Eric Nemchik <eric@nemchik.com> Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
15 lines
381 B
TypeScript
15 lines
381 B
TypeScript
import storage from "../localStorage";
|
|
|
|
export default (network, isCollapsed) => {
|
|
const networks = new Set(JSON.parse(storage.get("thelounge.networks.collapsed")));
|
|
network.isCollapsed = isCollapsed;
|
|
|
|
if (isCollapsed) {
|
|
networks.add(network.uuid);
|
|
} else {
|
|
networks.delete(network.uuid);
|
|
}
|
|
|
|
storage.set("thelounge.networks.collapsed", JSON.stringify([...networks]));
|
|
};
|