replace a stray "carts/" with DATA_DIR

This commit is contained in:
Iris Lightshard 2021-08-03 23:37:46 -06:00
parent adc35a5537
commit bf7aaa6038
Signed by: Iris Lightshard
GPG key ID: 3B7FBC22144E6398

2
xrxs.c
View file

@ -351,7 +351,7 @@ void read_realms(Req* r) {
if (user->cart == nil)
respond(r, nil);
scat(realm_path, "carts/");
scat(realm_path, DATA_DIR);
scat(realm_path, user->cart->name);
scat(realm_path, "/realms");