Skip to content

Commit

Permalink
Merge pull request #23 from Digitalroot-Valheim/18-bug-sid_develop-co…
Browse files Browse the repository at this point in the history
…okie-is-gone-from-redesigned-nexus-page

18 bug sid develop cookie is gone from redesigned nexus page
  • Loading branch information
Digitalroot authored May 22, 2024
2 parents 36efdc1 + 76a2b59 commit 50a6ada
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 22 deletions.
3 changes: 2 additions & 1 deletion src/Digitalroot.ModUploader.sln
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
ProjectSection(SolutionItems) = preProject
..\.gitattributes = ..\.gitattributes
..\.gitignore = ..\.gitignore
.config\dotnet-tools.json = .config\dotnet-tools.json
..\LICENSE = ..\LICENSE
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Digitalroot.ModUploader", "Digitalroot.ModUploader\Digitalroot.ModUploader.csproj", "{32688D96-35F8-443A-8119-D5D77C1129FB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests", "UnitTests\UnitTests.csproj", "{17FFD0CC-3C83-4750-B739-2998F8A8D6BA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests", "UnitTests\UnitTests.csproj", "{17FFD0CC-3C83-4750-B739-2998F8A8D6BA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
2 changes: 1 addition & 1 deletion src/Digitalroot.ModUploader/Digitalroot.ModUploader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<VersionPrefix>1.4.1</VersionPrefix>
<VersionPrefix>1.4.2</VersionPrefix>
<RestoreAdditionalProjectSources>
https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json;
https://digitalroot-valheim-nuget.s3.us-west-2.amazonaws.com/index.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ internal static ICommand GetCheckCommand()

private static ICommandHandler GetCommandHandler()
{
return CommandHandler.Create<string, string>(async (key, cnms) =>
return CommandHandler.Create<string, string>(async (key, nmsc) =>
{
var checkApiKeyMessage = await CheckApiKey(key);
Console.WriteLine(checkApiKeyMessage.Response.IsApiKeyValid ? "API key successfully validated!".Pastel(ColorOptions.SuccessColor) : "API key validation failed!".Pastel(ColorOptions.WarningColor));

var checkCookieMessage = await CheckCookie(cnms);
var checkCookieMessage = await CheckCookie(nmsc);
Console.WriteLine(checkCookieMessage.ResponseModel.IsCookieValid ? "Cookies successfully validated!".Pastel(ColorOptions.SuccessColor) : "Cookie validation failed!".Pastel(ColorOptions.WarningColor));

if (!(checkApiKeyMessage.Response.IsApiKeyValid && checkCookieMessage.ResponseModel.IsCookieValid))
Expand Down
9 changes: 0 additions & 9 deletions src/Digitalroot.OdinPlusModUploader.sln.DotSettings

This file was deleted.

9 changes: 0 additions & 9 deletions src/OdinPlusModUploader.sln.DotSettings

This file was deleted.

0 comments on commit 50a6ada

Please sign in to comment.