diff --git a/server/integration.go b/server/integration.go index 1336126..d0353c3 100644 --- a/server/integration.go +++ b/server/integration.go @@ -31,7 +31,7 @@ func (s *Server) createPlexmatchIfNotExists(seriesId int) error { if err != nil { //create new log.Warnf(".plexmatch file not found, create new one: %s", series.NameEn) - return st.WriteFile(filepath.Join(series.TargetDir, ".plexmatch"), []byte(fmt.Sprintf("tmdbid=%d\n",series.TmdbID))) + return st.WriteFile(filepath.Join(series.TargetDir, ".plexmatch"), []byte(fmt.Sprintf("tmdbid: %d\n",series.TmdbID))) } return nil }