Don't create obsolete directories in adduser().

This commit is contained in:
default 2022-12-04 07:19:45 +01:00
parent 30e3f2fc3d
commit fd2b1509a8

View File

@ -237,9 +237,9 @@ int adduser(char *uid)
}
const char *dirs[] = {
"followers", "following", "local", "muted", "hidden",
"followers", "following", "muted", "hidden",
"public", "private", "queue", "history",
"static", "timeline", NULL };
"static", NULL };
int n;
for (n = 0; dirs[n]; n++) {