Results 509 comments of Martin Tournoij

There isn't really a way to fix this without manually altering the IDs; the first site you create is the main "account", and the other sites are linked to that...

Oh, you'll also need to update the users table: update users set site_id=2 where site_id=1;

It can just be changed to do the above automatically on deletion; that's actually much easier than splitting out the tables.

There's actually a few other illumos issues as well: - #631: option to disable following links. I tried replacing the Stat() with Lstat(), but that didn't really seem to work....

What's your use case for sorting? I could imagine perhaps some use for alphabetic sorting (although the filter/search should cover that as well), but I'm not sure about last visited?

I suppose an option could be added for it – turns out this is a lot easier than I thought; I think it just needs tweaking one query. Need to...

I don't think Windows supports this, at least not according to my table here: https://github.com/fsnotify/fsnotify/issues/519#issuecomment-2081575632 Maybe CHANGE_LAST_ACCESS can be used for this? I don't know. Getting the behaviour to be...

Closing as dupe of aforementioned issue.

I mostly left it unexported because I'd like to keep the number of exported symbols to a minimum, which makes the overall library easier to use. And it's easy to...

No one has reported this as a practical problem in a year and a half, so it doesn't seem to be a huge problem for folks. We can look again...