From e2a7c93753983bd206671950f8c6af073ec86d5f Mon Sep 17 00:00:00 2001 From: josc146 Date: Sun, 16 Jul 2023 16:54:18 +0800 Subject: [PATCH] fix always show `Convert Failed` when converting model --- frontend/src/pages/Configs.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/Configs.tsx b/frontend/src/pages/Configs.tsx index b06dd7d..b7565f8 100644 --- a/frontend/src/pages/Configs.tsx +++ b/frontend/src/pages/Configs.tsx @@ -254,7 +254,7 @@ export const Configs: FC = observer(() => { const newModelPath = modelPath + '-' + strategy.replace(/[:> *+]/g, '-'); toast(t('Start Converting'), { autoClose: 1000, type: 'info' }); ConvertModel(commonStore.settings.customPythonPath, modelPath, strategy, newModelPath).then(async () => { - if (!await FileExists(newModelPath)) { + if (!await FileExists(newModelPath + '.pth')) { toast(t('Convert Failed') + ' - ' + await GetPyError(), { type: 'error' }); } else { toast(`${t('Convert Success')} - ${newModelPath}`, { type: 'success' });