File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
common/src/main/java/com/lunarclient/apollo Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,13 @@ public final class ServerStartRequest implements ApiRequest<ServerStartResponse>
133133 */
134134 private final List <String > modules ;
135135
136+ /**
137+ * The current version of Apollo that is running.
138+ *
139+ * @since 1.2.0
140+ */
141+ private final String apolloVersion ;
142+
136143 @ Override
137144 public ApiServiceType getService () {
138145 return ApiServiceType .ANALYTICS ;
Original file line number Diff line number Diff line change @@ -153,7 +153,8 @@ private void handleServerStartStats() {
153153 .platformType (platform .getKind ().name ())
154154 .platformSubtype (stats .getPlatformSubtype ())
155155 .platformVersion (stats .getPlatformVersion ())
156- .modules (enabledModules );
156+ .modules (enabledModules )
157+ .apolloVersion (platform .getApolloVersion ());
157158 }
158159
159160 if (softwareInformation ) {
You can’t perform that action at this time.
0 commit comments