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