1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-19 16:33:36 +03:00

Issues -> IssuesUrl

Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2024-03-19 20:02:06 +03:00
parent dda132abcc
commit e9d3de4648
Signed by: mctaylors
GPG key ID: 7181BEBE676903C1
4 changed files with 4 additions and 4 deletions

View file

@ -10,7 +10,7 @@ public static class BuildInfo
} }
} }
public static string Issues public static string IssuesUrl
{ {
get get
{ {

View file

@ -115,7 +115,7 @@ public class AboutCommandGroup : CommandGroup
ButtonComponentStyle.Link, ButtonComponentStyle.Link,
Messages.ButtonReportIssue, Messages.ButtonReportIssue,
new PartialEmoji(Name: "⚠️"), new PartialEmoji(Name: "⚠️"),
URL: BuildInfo.Issues URL: BuildInfo.IssuesUrl
); );
return await _feedback.SendContextualEmbedResultAsync(embed, return await _feedback.SendContextualEmbedResultAsync(embed,

View file

@ -72,7 +72,7 @@ public class ErrorLoggingPostExecutionEvent : IPostExecutionEvent
ButtonComponentStyle.Link, ButtonComponentStyle.Link,
Messages.ButtonReportIssue, Messages.ButtonReportIssue,
new PartialEmoji(Name: "⚠️"), new PartialEmoji(Name: "⚠️"),
URL: BuildInfo.Issues URL: BuildInfo.IssuesUrl
); );
return await _feedback.SendContextualEmbedResultAsync(embed, return await _feedback.SendContextualEmbedResultAsync(embed,

View file

@ -117,7 +117,7 @@ public class GuildLoadedResponder : IResponder<IGuildCreate>
ButtonComponentStyle.Link, ButtonComponentStyle.Link,
Messages.ButtonReportIssue, Messages.ButtonReportIssue,
new PartialEmoji(Name: "⚠️"), new PartialEmoji(Name: "⚠️"),
URL: BuildInfo.Issues URL: BuildInfo.IssuesUrl
); );
return await _channelApi.CreateMessageWithEmbedResultAsync(channel, embedResult: errorEmbed, return await _channelApi.CreateMessageWithEmbedResultAsync(channel, embedResult: errorEmbed,