fix log parser changes
This commit is contained in:
parent
a36426296a
commit
e02372bba9
|
@ -110,7 +110,7 @@ namespace StardewModdingAPI.Web.Controllers
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>Construct an instance.</summary>
|
/// <summary>Build a log parser model.</summary>
|
||||||
/// <param name="pasteID">The paste ID.</param>
|
/// <param name="pasteID">The paste ID.</param>
|
||||||
/// <param name="uploadError">An error which occurred while uploading the log to Pastebin.</param>
|
/// <param name="uploadError">An error which occurred while uploading the log to Pastebin.</param>
|
||||||
private LogParserModel GetModel(string pasteID, string uploadError = null)
|
private LogParserModel GetModel(string pasteID, string uploadError = null)
|
||||||
|
|
|
@ -76,7 +76,7 @@ else if (Model.ParsedLog?.IsValid == true)
|
||||||
</li>
|
</li>
|
||||||
}
|
}
|
||||||
</ul>
|
</ul>
|
||||||
<div data-os="android">
|
<div data-os="@Platform.Android">
|
||||||
On Android:
|
On Android:
|
||||||
<ol>
|
<ol>
|
||||||
<li>Open a file app (like My Files or MT Manager).</li>
|
<li>Open a file app (like My Files or MT Manager).</li>
|
||||||
|
@ -85,7 +85,7 @@ else if (Model.ParsedLog?.IsValid == true)
|
||||||
<li>The log file is <code>SMAPI-crash.txt</code> if it exists, otherwise <code>SMAPI-latest.txt</code>.</li>
|
<li>The log file is <code>SMAPI-crash.txt</code> if it exists, otherwise <code>SMAPI-latest.txt</code>.</li>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<div data-os="linux">
|
<div data-os="@Platform.Linux">
|
||||||
On Linux:
|
On Linux:
|
||||||
<ol>
|
<ol>
|
||||||
<li>Open the Files app.</li>
|
<li>Open the Files app.</li>
|
||||||
|
@ -95,7 +95,7 @@ else if (Model.ParsedLog?.IsValid == true)
|
||||||
<li>The log file is <code>SMAPI-crash.txt</code> if it exists, otherwise <code>SMAPI-latest.txt</code>.</li>
|
<li>The log file is <code>SMAPI-crash.txt</code> if it exists, otherwise <code>SMAPI-latest.txt</code>.</li>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<div data-os="mac">
|
<div data-os="@Platform.Mac">
|
||||||
On Mac:
|
On Mac:
|
||||||
<ol>
|
<ol>
|
||||||
<li>Open the Finder app.</li>
|
<li>Open the Finder app.</li>
|
||||||
|
@ -104,7 +104,7 @@ else if (Model.ParsedLog?.IsValid == true)
|
||||||
<li>The log file is <code>SMAPI-crash.txt</code> if it exists, otherwise <code>SMAPI-latest.txt</code>.</li>
|
<li>The log file is <code>SMAPI-crash.txt</code> if it exists, otherwise <code>SMAPI-latest.txt</code>.</li>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<div data-os="windows">
|
<div data-os="@Platform.Windows">
|
||||||
On Windows:
|
On Windows:
|
||||||
<ol>
|
<ol>
|
||||||
<li>Press the <code>Windows</code> and <code>R</code> buttons at the same time.</li>
|
<li>Press the <code>Windows</code> and <code>R</code> buttons at the same time.</li>
|
||||||
|
|
Loading…
Reference in New Issue