1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-02-05 21:50:07 +00:00

ErrorActivity: add Timestamp and Package/Service to markdown export

These were displayed in the UI, but not added into the markdown export
string.
This commit is contained in:
Profpatsch 2025-01-21 16:25:54 +01:00
parent 65749cbac0
commit edd19641ac

View File

@ -248,6 +248,9 @@ public class ErrorActivity extends AppCompatActivity {
.append("\n* __Content Language:__ ").append(getContentLanguageString())
.append("\n* __App Language:__ ").append(getAppLanguage())
.append("\n* __Service:__ ").append(errorInfo.getServiceName())
.append("\n* __Timestamp:__ ").append(currentTimeStamp)
.append("\n* __Package:__ ").append(getPackageName())
.append("\n* __Service:__ ").append(errorInfo.getServiceName())
.append("\n* __Version:__ ").append(BuildConfig.VERSION_NAME)
.append("\n* __OS:__ ").append(getOsString()).append("\n");