Compare commits

..

2 Commits

Author SHA1 Message Date
7bf15ce021 Merge branch 'main' of git.technopunk.space:tomi/Blueberry 2025-12-10 11:55:43 +01:00
b08df1568c fix hardcoded values 2025-12-10 11:55:27 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -76,7 +76,7 @@ namespace BlueMine
private void apiLinkButton_Click(object sender, RoutedEventArgs e)
{
string url = "https://support.onliveit.eu:444/redmine/my/account";
string url = $"{_config.RedmineUrl}/my/account";
var psi = new ProcessStartInfo
{
@@ -130,7 +130,7 @@ namespace BlueMine
var issueNum = IssueNumberTextBox.Text;
if (int.TryParse(issueNum, out var issueId))
{
string url = $"https://support.onliveit.eu:444/redmine/issues/{issueId}";
string url = $"{_config.RedmineUrl}/issues/{issueId}";
var psi = new ProcessStartInfo
{

Binary file not shown.