fix always show Convert Failed when converting model

This commit is contained in:
josc146 2023-07-16 16:54:18 +08:00
parent 34349aee0b
commit e2a7c93753

View File

@ -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' });