Skip to content

Commit

Permalink
Merge branch '91-missingmethodexception-method-not-found-void-systemi…
Browse files Browse the repository at this point in the history
…ostreamreaderctorsystemiostream-systemtextencoding' into dev
  • Loading branch information
maxisoft committed Sep 9, 2024
2 parents e401566 + 5c5fd9e commit 6dd4de4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
- name: Upload generic
continue-on-error: true
uses: actions/upload-artifact@v4.3.6
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ matrix.os }}_${{ env.PLUGIN_NAME }}-generic
path: out/${{ env.PLUGIN_NAME }}-generic.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
- name: Upload 7z artifact
continue-on-error: true
if: always()
uses: actions/upload-artifact@v4.3.6
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ matrix.configuration }}_${{ matrix.asf_docker_tag }}_stdout
path: tmp_7z/output.7z
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[submodule "ArchiSteamFarm"]
path = ArchiSteamFarm
url = https://github.com/JustArchiNET/ArchiSteamFarm.git
branch = 6.0.5.2
branch = 6.0.6.4
[submodule "BloomFilter"]
path = BloomFilter
url = https://gist.github.com/8c74d66798a21e05a35b0023573f48e9.git
2 changes: 1 addition & 1 deletion ASFFreeGames/HttpClientSimple/SimpleHttpClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public sealed class HttpStreamResponse(HttpResponseMessage response, Stream? str
public bool HasValidStream => stream is not null && (!EmptyStreamLazy.IsValueCreated || !ReferenceEquals(EmptyStreamLazy.Value, Stream));

public async Task<string> ReadAsStringAsync(CancellationToken cancellationToken) {
using StreamReader reader = new(Stream, Encoding.UTF8);
using StreamReader reader = new(Stream); // assume the encoding is UTF8, cannot be specified as per issue #91

return await reader.ReadToEndAsync(cancellationToken).ConfigureAwait(false);
}
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup>
<PluginName>ASFFreeGames</PluginName>
<Version>1.6.1.0</Version>
<Version>1.6.2.0</Version>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

Expand Down

0 comments on commit 6dd4de4

Please sign in to comment.