Fixed dev toasts
This commit is contained in:
@@ -67,10 +67,10 @@ namespace FoxTube.Classes
|
||||
Id = version;
|
||||
}
|
||||
|
||||
public InboxItem(string title, string content, DateTime timeStamp, string id)
|
||||
public InboxItem(string title, string content, DateTime timeStamp, string id, string header)
|
||||
{
|
||||
Type = InboxItemType.Default;
|
||||
Content = content;
|
||||
Content = header + "\n\n" + content;
|
||||
Subject = title;
|
||||
TimeStamp = timeStamp;
|
||||
Id = id;
|
||||
|
||||
@@ -43,7 +43,8 @@ namespace FoxTube.Pages.SettingsPages
|
||||
e["header"][SettingsStorage.Language].InnerText,
|
||||
e["content"][SettingsStorage.Language].InnerText,
|
||||
DateTime.Parse(e.GetAttribute("time")),
|
||||
e["id"].InnerText));
|
||||
e["id"].InnerText,
|
||||
e["contentHeader"].InnerText));
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user