0x4a52466c696e74 2 年之前
父节点
当前提交
c0394c741e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      metla.go

+ 1 - 1
metla.go

@@ -23,7 +23,7 @@ type Metla struct {
 
 func (s *Metla) content(name string) (content []byte, err error) {
 	if content, err = s.contentCallback(name); err == nil {
-		if filepath.Ext(name) != ".script" || filepath.Ext(name) != ".sjs" {
+		if filepath.Ext(name) != ".script" && filepath.Ext(name) != ".sjs" {
 			content, err = parseBytes(content, name)
 		}
 	}