Skip to content

Commit

Permalink
Fix for #77 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-petko authored and Github Enterprise committed Apr 12, 2022
1 parent b81310f commit 9a5d6e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Source/Classes/DataStorePages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ export class DataStorePages extends Pages {
? this.requestUrl
: `${this.requestUrl.toString()}&exclusiveStartKey=${this.exclusiveStartKey.toString()}`;
request.requestType = RequestType.GET_SORTED_ASYNC_PAGE;
if (DFFlag('DataStoreUseNewEndpoints'))
request.method = 'GET';
request.owner = ods;
ExectionHelper.ExecuteGetSorted(request)
.then((r) => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mfd/rbxdatastoreservice",
"version": "2.3.8",
"version": "2.3.9",
"description": "RbxDataStoreService is a module that allows you to access roblox datastores from your Node.js applications.",
"main": "Bin/index.js",
"types": "Bin/Types",
Expand Down

0 comments on commit 9a5d6e0

Please sign in to comment.