Skip to content

Commit a0af662

Browse files
committed
feat: 提升 SDK 的容错能力
1 parent a5e7038 commit a0af662

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/EleCho.GoCqHttpSdk/EleCho.GoCqHttpSdk.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<Company>SlimeNull</Company>
99
<Description>Go-CqHttp 的 .NET SDK</Description>
1010
<RepositoryUrl>https://github.com/OrgEleCho/EleCho.GoCqHttpSdk</RepositoryUrl>
11-
<Version>1.2.2</Version>
11+
<Version>1.2.3</Version>
1212
<PackageReadmeFile>README.md</PackageReadmeFile>
1313
<Copyright>Copyright (c) EleCho 2023</Copyright>
1414
<PackageProjectUrl>https://github.com/OrgEleCho/EleCho.GoCqHttpSdk</PackageProjectUrl>

src/EleCho.GoCqHttpSdk/Message/CqImageMsg.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ internal override void ReadDataModel(CqMsgDataModel? model)
163163
ImageEffect = (CqImageEffect?)m.id;
164164
ThreadCount = m.c;
165165

166-
if (m.url != null)
167-
Url = new Uri(m.url);
166+
if (m.url != null && Uri.TryCreate(m.url, UriKind.Absolute, out Uri? uri))
167+
Url = uri;
168168
}
169169
}
170170
}

src/EleCho.GoCqHttpSdk/Message/CqRecordMsg.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ internal override void ReadDataModel(CqMsgDataModel? model)
132132
Proxy = m.proxy.ToBool();
133133
Timeout = m.timeout;
134134

135-
if (m.url != null)
136-
Url = new Uri(m.url);
135+
if (m.url != null && Uri.TryCreate(m.url, UriKind.Absolute, out Uri? uri))
136+
Url = uri;
137137
}
138138
}
139139
}

0 commit comments

Comments
 (0)