Skip to content

Commit 776051f

Browse files
committed
beachten sie wie ich den bug mit einem commit fixe
1 parent f6b83a2 commit 776051f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

OculusDB/OculusDBEnvironment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace OculusDB
1313
{
1414
public class OculusDBEnvironment
1515
{
16-
public static Updater updater = new ("1.1.47", "https://github.com/ComputerElite/OculusDB", "OculusDB", "OculusDB.dll");
16+
public static Updater updater = new ("1.1.48", "https://github.com/ComputerElite/OculusDB", "OculusDB", "OculusDB.dll");
1717
public static string workingDir = "";
1818
public static string dataDir = "";
1919
// Set to false if not in dev mode

OculusDB/OculusInteractor.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,9 @@ public static IEnumerable<Application> EnumerateAllApplications(Headset headset)
3131
}
3232
while (s.data.node.all_items.page_info.has_next_page)
3333
{
34-
string cursor = "";
34+
string cursor = s.data.node.all_items.page_info.end_cursor;
3535
foreach (Node<Application> e in s.data.node.all_items.edges)
3636
{
37-
cursor = e.cursor;
3837
i++;
3938
yield return e.node;
4039
}

0 commit comments

Comments
 (0)