Only process gcode files during backlog processing (compare #268)
This commit is contained in:
parent
ef8787acf9
commit
edd801aa7b
1 changed files with 3 additions and 0 deletions
|
|
@ -80,6 +80,9 @@ class GcodeManager:
|
|||
def _processAnalysisBacklog(self):
|
||||
for osFile in os.listdir(self._uploadFolder):
|
||||
filename = self._getBasicFilename(osFile)
|
||||
if not isGcodeFileName(filename):
|
||||
continue
|
||||
|
||||
absolutePath = self.getAbsolutePath(filename)
|
||||
if absolutePath is None:
|
||||
continue
|
||||
|
|
|
|||
Loading…
Reference in a new issue