Compare commits

..

2 Commits

Author SHA1 Message Date
sa 8e46739550 update version serial code 2026-06-08 13:37:07 +08:00
sa 13c4c19add fixed try-times <!> = try-times+1 bug 2026-06-08 13:36:22 +08:00
3 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -2,4 +2,5 @@ b43527c
60176fa
8cd942b
83acd30
b2baee0
b2baee0
13c4c19
+1 -1
View File
@@ -74,7 +74,7 @@ end
# rubocop:disable Metrics/MethodLength, Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
def main_once
chkrslts = []
(0..TRY_TIMES).each do
(0...TRY_TIMES).each do
chkrslt = ServerStatusDetector::MinecraftServer.self_diag
chkrslts.append(chkrslt)
end
+1 -1
View File
@@ -18,7 +18,7 @@ require 'net/http'
require 'uri'
# @type const RELEASE_SERIAL_CODE: String
RELEASE_SERIAL_CODE = 'b2baee0'
RELEASE_SERIAL_CODE = '13c4c19'
# @type const CHANNEL: String
CHANNEL = 'dev'
# @type const VERSION_LIST_URL: String