Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Runtime/Game/Requests/MetadataRequests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public enum LootLockerMetadataActions
{
create = 0,
update = 1,
delete = 2
delete = 2,
create_or_update = 3,
};
}

Expand Down Expand Up @@ -296,7 +297,7 @@ public LootLockerInternalMetadataOperationWithStringEnums(LootLockerMetadataOper
this.value = other.value;
this.tags = other.tags;
this.access = other.access;
this.action = other.action.ToString().ToLower();
this.action = other.action == LootLockerMetadataActions.create_or_update ? "upsert" : other.action.ToString().ToLower();
}

public new string type { get; set; }
Expand Down
Loading