Corrected order of constructor (GlobalBase clone)

This commit is contained in:
2023-08-27 00:59:54 +02:00
parent a8f0f1af15
commit f916cda0f1
7 changed files with 11 additions and 11 deletions

View File

@ -18,7 +18,7 @@ public abstract class LibraryConnector : GlobalBase
// ReSharper disable once MemberCanBeProtected.Global
public string auth { get; } //Base64 encoded, if you use your password everywhere, you have problems
protected LibraryConnector(string baseUrl, string auth, LibraryType libraryType, GlobalBase clone) : base(clone)
protected LibraryConnector(GlobalBase clone, string baseUrl, string auth, LibraryType libraryType) : base(clone)
{
this.baseUrl = baseUrl;
this.auth = auth;