Compare commits

..

No commits in common. "9823729aa83087b2c5106215afb865ce007b6731" and "d62ef9bbf36a31c3a8e8207b09e8f5d641ecb8ae" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View File

@ -1,9 +1,8 @@
@echo off
echo Updating SpaceNinjaServer...
git config remote.origin.url https://openwf.io/SpaceNinjaServer.git
git fetch --prune
git reset --hard origin/main
git config remote.origin.prune true
git pull
if exist static\data\0\ (
echo Updating stripped assets...

View File

@ -16,6 +16,8 @@ import {
} from "warframe-public-export-plus";
import { handleSubsumeCompletion } from "./infestedFoundryController";
import { allDailyAffiliationKeys } from "@/src/services/inventoryService";
import { toOid } from "@/src/helpers/inventoryHelpers";
import { Types } from "mongoose";
export const inventoryController: RequestHandler = async (request, response) => {
const account = await getAccountForRequest(request);
@ -255,8 +257,7 @@ export const getInventoryResponse = async (
// This determines if the "void fissures" tab is shown in navigation.
inventoryResponse.HasOwnedVoidProjectionsPreviously = true;
// Omitting this field so opening the navigation resyncs the inventory which is more desirable for typical usage.
//inventoryResponse.LastInventorySync = toOid(new Types.ObjectId());
inventoryResponse.LastInventorySync = toOid(new Types.ObjectId());
return inventoryResponse;
};