Skip to content

Commit

Permalink
public string->string? MyOpenSourceProjectUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
lilith committed Feb 27, 2024
1 parent ec5d8e0 commit c9bbc14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal record struct ExtensionlessPath(string StringToCompare, StringCompariso

//internal Licensing? Licensing { get; set; }

public string MyOpenSourceProjectUrl { get; set; } = "https://i-need-a-license.com";
public string? MyOpenSourceProjectUrl { get; set; } = "https://i-need-a-license.com";

/// <summary>
/// Set to true to allow any registered IStreamCache plugin (such as Imageflow.Server.HybridCache) to be used.
Expand Down
2 changes: 1 addition & 1 deletion src/Imazen.Routing/Layers/Licensing.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Imazen.Routing.Layers;

public class LicenseOptions{
internal string? LicenseKey { get; set; } = "";
internal string MyOpenSourceProjectUrl { get; set; } = "";
internal string? MyOpenSourceProjectUrl { get; set; } = "";

internal string KeyPrefix { get; set; } = "imageflow_";
public required string[] CandidateCacheFolders { get; set; }
Expand Down

0 comments on commit c9bbc14

Please sign in to comment.