mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-19 16:33:36 +03:00
resolve conversations
Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
parent
243eaaa3cd
commit
954bbcb34a
3 changed files with 6 additions and 6 deletions
|
@ -114,8 +114,8 @@ public class AboutCommandGroup : CommandGroup
|
||||||
var issuesButton = new ButtonComponent(
|
var issuesButton = new ButtonComponent(
|
||||||
ButtonComponentStyle.Link,
|
ButtonComponentStyle.Link,
|
||||||
BuildInfo.IsDirty
|
BuildInfo.IsDirty
|
||||||
? Messages.ButtonReportIssue
|
? Messages.ButtonDirty
|
||||||
: Messages.ButtonDirty,
|
: Messages.ButtonReportIssue,
|
||||||
new PartialEmoji(Name: "⚠️"),
|
new PartialEmoji(Name: "⚠️"),
|
||||||
URL: BuildInfo.IssuesUrl,
|
URL: BuildInfo.IssuesUrl,
|
||||||
IsDisabled: BuildInfo.IsDirty
|
IsDisabled: BuildInfo.IsDirty
|
||||||
|
|
|
@ -71,8 +71,8 @@ public class ErrorLoggingPostExecutionEvent : IPostExecutionEvent
|
||||||
var issuesButton = new ButtonComponent(
|
var issuesButton = new ButtonComponent(
|
||||||
ButtonComponentStyle.Link,
|
ButtonComponentStyle.Link,
|
||||||
BuildInfo.IsDirty
|
BuildInfo.IsDirty
|
||||||
? Messages.ButtonReportIssue
|
? Messages.ButtonDirty
|
||||||
: Messages.ButtonDirty,
|
: Messages.ButtonReportIssue,
|
||||||
new PartialEmoji(Name: "⚠️"),
|
new PartialEmoji(Name: "⚠️"),
|
||||||
URL: BuildInfo.IssuesUrl,
|
URL: BuildInfo.IssuesUrl,
|
||||||
IsDisabled: BuildInfo.IsDirty
|
IsDisabled: BuildInfo.IsDirty
|
||||||
|
|
|
@ -116,8 +116,8 @@ public class GuildLoadedResponder : IResponder<IGuildCreate>
|
||||||
var issuesButton = new ButtonComponent(
|
var issuesButton = new ButtonComponent(
|
||||||
ButtonComponentStyle.Link,
|
ButtonComponentStyle.Link,
|
||||||
BuildInfo.IsDirty
|
BuildInfo.IsDirty
|
||||||
? Messages.ButtonReportIssue
|
? Messages.ButtonDirty
|
||||||
: Messages.ButtonDirty,
|
: Messages.ButtonReportIssue,
|
||||||
new PartialEmoji(Name: "⚠️"),
|
new PartialEmoji(Name: "⚠️"),
|
||||||
URL: BuildInfo.IssuesUrl,
|
URL: BuildInfo.IssuesUrl,
|
||||||
IsDisabled: BuildInfo.IsDirty
|
IsDisabled: BuildInfo.IsDirty
|
||||||
|
|
Loading…
Add table
Reference in a new issue