Skip to content

Commit

Permalink
Add a total count to subsession list
Browse files Browse the repository at this point in the history
Closes #117
  • Loading branch information
rtm516 committed Aug 7, 2024
1 parent f3c8175 commit 035b70e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ public void listSessions() {
messages.add(" Following: " + socialSummary().targetFollowingCount() + "/1000");

if (!subSessionManagers.isEmpty()) {
messages.add("Sub-sessions:");
messages.add("Sub-sessions: (" + subSessionManagers.size() + ")");
for (Map.Entry<String, SubSessionManager> subSession : subSessionManagers.entrySet()) {
messages.add(" - ID: " + subSession.getKey());
messages.add(" Gamertag: " + subSession.getValue().getXboxToken().gamertag());
Expand Down

0 comments on commit 035b70e

Please sign in to comment.