You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-10 00:05:42 +02:00
This commit is contained in:
@ -1,10 +1,15 @@
|
||||
import { AppType } from '../../../../models/Setting';
|
||||
import getDefaultPlatforms from './getDefaultPlatforms';
|
||||
import { ManifestSlice } from './types';
|
||||
|
||||
// Returns false if the platform isn't supported at all,
|
||||
const minVersionForPlatform = (appPlatform: AppType, manifest: ManifestSlice): string|false => {
|
||||
const platforms = manifest.platforms ?? [];
|
||||
// If platforms is not specified (or empty), default to supporting all platforms.
|
||||
let platforms = manifest.platforms;
|
||||
|
||||
if (!platforms || platforms.length === 0) {
|
||||
platforms = getDefaultPlatforms(manifest.id);
|
||||
}
|
||||
|
||||
const supported = platforms.length === 0 || platforms.includes(appPlatform);
|
||||
if (!supported) {
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user