diff --git a/src/components/dialogs/StartPrintDialogSpoolman.vue b/src/components/dialogs/StartPrintDialogSpoolman.vue index 469415a98..52df30ac5 100644 --- a/src/components/dialogs/StartPrintDialogSpoolman.vue +++ b/src/components/dialogs/StartPrintDialogSpoolman.vue @@ -73,7 +73,9 @@ export default class StartPrintDialogSpoolman extends Mixins(BaseMixin) { return alerts } - const gcodeFilamentType = this.file.filament_type ?? '' + let gcodeFilamentType = this.file.filament_type ?? '' + if (gcodeFilamentType.includes(';')) gcodeFilamentType = gcodeFilamentType.split(';')[0] + if ( gcodeFilamentType !== '' && this.activeSpool?.filament?.material?.toLowerCase() !== gcodeFilamentType.toLowerCase()