Add middleware fix for responses that are not 200.
Some checks failed
Docker Image CI / build (push) Has been cancelled

This commit is contained in:
Roger Far 2024-04-09 20:22:23 -06:00
parent d36b9cf889
commit 575ae6af5a
5 changed files with 22 additions and 16 deletions

View file

@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [2.0.67] - 2024-04-08
## [2.0.68] - 2024-04-09
### Changed
- Base Href middleware fix that throws error when a response is not 200.
## [2.0.67] - 2024-04-09
### Changed
- Symlink fixes.

View file

@ -55,7 +55,7 @@
<a class="navbar-item" routerLink="profile"> Profile </a>
<a class="navbar-item" (click)="logout()"> Logout </a>
<hr class="navbar-divider" />
<a href="https://github.com/rogerfar/rdt-client" target="_blank" class="navbar-item">Version 2.0.67</a>
<a href="https://github.com/rogerfar/rdt-client" target="_blank" class="navbar-item">Version 2.0.68</a>
</div>
</div>
</div>

View file

@ -1,6 +1,6 @@
{
"name": "rdt-client",
"version": "2.0.67",
"version": "2.0.68",
"description": "This is a web interface to manage your torrents on Real-Debrid.",
"main": "index.js",
"dependencies": {

View file

@ -23,7 +23,8 @@ public class BaseHrefMiddleware(RequestDelegate next, String basePath)
newBody.Seek(0, SeekOrigin.Begin);
var responseBody = await new StreamReader(newBody).ReadToEndAsync();
// ReSharper disable once ConditionalAccessQualifierIsNonNullableAccordingToAPIContract
if (context.Response.StatusCode == 200)
{
if (context.Response.ContentType?.Contains("text/html") == true)
{
responseBody = Regex.Replace(responseBody, @"<base href=""/""", @$"<base href=""{_basePath}""");
@ -39,6 +40,7 @@ public class BaseHrefMiddleware(RequestDelegate next, String basePath)
await context.Response.BodyWriter.WriteAsync(newBody.ToArray());
}
}
}
finally
{
context.Response.Body = originalBody;

View file

@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<OutputType>Exe</OutputType>
<UserSecretsId>94c24cba-f03f-4453-a671-3640b517c573</UserSecretsId>
<Version>2.0.67</Version>
<Version>2.0.68</Version>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>