mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Fix reporting empty message
This commit is contained in:
parent
8c09c41cf0
commit
5fb6c9aa04
1 changed files with 1 additions and 2 deletions
|
|
@ -512,7 +512,7 @@ export default class AppFilesScanner {
|
||||||
const { supportedVersionNumber } = await this.submitScanInfo ({
|
const { supportedVersionNumber } = await this.submitScanInfo ({
|
||||||
filename: file.name,
|
filename: file.name,
|
||||||
appVersion: file.appVersion,
|
appVersion: file.appVersion,
|
||||||
result: finishedStatusMessage,
|
result: binarySupportsNative ? '✅' : '🔶',
|
||||||
machoMeta: {
|
machoMeta: {
|
||||||
...mainExecutableMeta,
|
...mainExecutableMeta,
|
||||||
file: undefined,
|
file: undefined,
|
||||||
|
|
@ -534,7 +534,6 @@ export default class AppFilesScanner {
|
||||||
|
|
||||||
console.log('supportedVersionNumber', supportedVersionNumber)
|
console.log('supportedVersionNumber', supportedVersionNumber)
|
||||||
|
|
||||||
|
|
||||||
let finishedStatusMessage = ''
|
let finishedStatusMessage = ''
|
||||||
|
|
||||||
if ( binarySupportsNative ) {
|
if ( binarySupportsNative ) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue