mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-21 16:33:48 +01:00
fix
This commit is contained in:
parent
72de6bd8cb
commit
93f93ffb35
@ -14,7 +14,7 @@ body:
|
||||
|
||||
また、以下のことにもご注意ください。
|
||||
|
||||
- **このフォームはバグ報告専用です。**機能リクエストは[こちら](https://github.com/misskey-dev/misskey-hub-next/issues/new?assignees=&labels=feature&projects=&template=04_feature-request.yml)からお願いします。
|
||||
- **このフォームはバグ報告専用です。** 機能リクエストは[こちら](https://github.com/misskey-dev/misskey-hub-next/issues/new?assignees=&labels=feature&projects=&template=04_feature-request.yml)からお願いします。
|
||||
|
||||
以上のことを試してもまだ問題が解決しない場合は、以下に症状をできるだけ詳しく記入してください。**貴重なお時間を使ってご報告いただきありがとうございます!**
|
||||
|
||||
|
@ -21,6 +21,7 @@ export async function getGhIssueUrl(options: {
|
||||
"fullVersionList",
|
||||
"platformVersion",
|
||||
]);
|
||||
|
||||
let osVersion = 'v' + uaData.platformVersion;
|
||||
if (uaData.platform === 'Windows') {
|
||||
// https://learn.microsoft.com/ja-jp/microsoft-edge/web-platform/how-to-detect-win11
|
||||
@ -35,12 +36,15 @@ export async function getGhIssueUrl(options: {
|
||||
osVersion = '8.1 or before';
|
||||
}
|
||||
}
|
||||
|
||||
const browserData = uaData.fullVersionList.find((item: any) => item.brand.toLowerCase() !== 'not_a brand');
|
||||
|
||||
const env = [
|
||||
`* Model and OS of the device(s): ${uaData.platform} ${osVersion}`,
|
||||
`* Browser: ${browserData.brand} ${browserData.version}`,
|
||||
`* Viewport Size: ${window.innerWidth}x${window.innerHeight}`,
|
||||
`* (UA Detected Using getHighEntropyValues)`,
|
||||
(options.lang === 'ja') ? '* 【自動入力済】追記は不要です' : '* [Auto-filled] No need to write additional information.',
|
||||
];
|
||||
environment = env.join('\n');
|
||||
} else {
|
||||
@ -52,6 +56,7 @@ export async function getGhIssueUrl(options: {
|
||||
`* Browser: ${uaRes.browser.name} (${uaRes.engine.name}) v${uaRes.browser.version}`,
|
||||
`* Viewport Size: ${window.innerWidth}x${window.innerHeight}`,
|
||||
`* Raw User Agent: ${uaRes.ua}`,
|
||||
(options.lang === 'ja') ? '* 【自動入力済】追記は不要です' : '* [Auto-filled] No need to write additional information.',
|
||||
];
|
||||
environment = env.join('\n');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user