Skip to content

Commit edd1964

Browse files
committed
ErrorActivity: add Timestamp and Package/Service to markdown export
These were displayed in the UI, but not added into the markdown export string.
1 parent 65749cb commit edd1964

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

app/src/main/java/org/schabi/newpipe/error/ErrorActivity.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,9 @@ private String buildMarkdown() {
248248
.append("\n* __Content Language:__ ").append(getContentLanguageString())
249249
.append("\n* __App Language:__ ").append(getAppLanguage())
250250
.append("\n* __Service:__ ").append(errorInfo.getServiceName())
251+
.append("\n* __Timestamp:__ ").append(currentTimeStamp)
252+
.append("\n* __Package:__ ").append(getPackageName())
253+
.append("\n* __Service:__ ").append(errorInfo.getServiceName())
251254
.append("\n* __Version:__ ").append(BuildConfig.VERSION_NAME)
252255
.append("\n* __OS:__ ").append(getOsString()).append("\n");
253256

0 commit comments

Comments
 (0)