Skip to content

Commit

Permalink
v6.0.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
trueai-org committed Nov 15, 2024
1 parent 8c70347 commit 338a8c8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Midjourney.API/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
</head>
<body>
<div id="root"></div>
<script src="/umi.7e222898.js"></script>
<script src="/umi.5154dab3.js"></script>
</body>
</html>

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Midjourney.Infrastructure/GlobalConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class GlobalConfiguration
/// <summary>
/// 版本号
/// </summary>
public static string Version { get; set; } = "v6.0.0-beta.1";
public static string Version { get; set; } = "v6.0.0-beta.2";

/// <summary>
/// 全局配置项
Expand Down
2 changes: 1 addition & 1 deletion src/Midjourney.Infrastructure/Models/DiscordAccount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ public void InitSubChannels()
/// </summary>
public void SponsorValidate()
{
if (DayDrawLimit < 10)
if (DayDrawLimit > 0 && DayDrawLimit < 10)
{
DayDrawLimit = 10;
}
Expand Down

0 comments on commit 338a8c8

Please sign in to comment.