diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2020-12-22 10:08:06 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2020-12-22 10:08:06 +0800 |
commit | b8527fc846c8d73296884e9a0836c83c35987fde (patch) | |
tree | 4eae3ba47101751ae173a40ba4e96af61beed974 /script/service | |
parent | 02d6e1d8884e5e7792b1bcb2b0944abe01b8e6a1 (diff) | |
download | lua-language-server-b8527fc846c8d73296884e9a0836c83c35987fde.zip |
use domain
Diffstat (limited to 'script/service')
-rw-r--r-- | script/service/telemetry.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/script/service/telemetry.lua b/script/service/telemetry.lua index 8f2bec8d..66d4d198 100644 --- a/script/service/telemetry.lua +++ b/script/service/telemetry.lua @@ -20,6 +20,7 @@ local function getClientName() local clientName = client.info.clientInfo.name local clientVersion = client.info.clientInfo.version nonil.disable() + do return '测试看看能不能用域名' end return table.concat({clientName, clientVersion}, ' ') end @@ -64,7 +65,7 @@ timer.wait(5, function () if not config.config.telemetry.enable then return end - local link = net.connect('tcp', '119.45.194.183', 11577) + local link = net.connect('tcp', 'moe-loli.love', 11577) function link:on_connect() pushClientInfo(link) pushPlatformInfo(link) |