Fixed the self-hosted provider's display name

This commit is contained in:
Thorsten Sommer 2024-07-04 13:32:52 +02:00
parent 29263660fc
commit 29e1b2e087
No known key found for this signature in database
GPG Key ID: B0B7E2FC074BF1F5

View File

@ -24,7 +24,7 @@ public readonly record struct Provider(uint Num, string Id, string InstanceName,
public override string ToString() public override string ToString()
{ {
if(this.IsSelfHosted) if(this.IsSelfHosted)
return $"{this.InstanceName} ({this.UsedProvider.ToName()}, {this.Hostname}, {this.Model})"; return $"{this.InstanceName} ({this.UsedProvider.ToName()}, {this.Hostname})";
return $"{this.InstanceName} ({this.UsedProvider.ToName()}, {this.Model})"; return $"{this.InstanceName} ({this.UsedProvider.ToName()}, {this.Model})";
} }