FluidLoadFolder bug

FluidLoadFolder has the following line:

server ?? server = Server.default;

but I think you want:

server ?? {server = Server.default};

It is currently over-riding the server to the default server no matter what its value, which makes it impossible to use it with any server other than localhost

Whoops. Yes. Thanks