Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Commit

Permalink
audiop import fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
bengarrett committed Dec 4, 2023
1 parent 79d868c commit 150d048
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/importer/record/record.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"github.com/Defacto2/df2/pkg/importer/amplify"
"github.com/Defacto2/df2/pkg/importer/arcade"
"github.com/Defacto2/df2/pkg/importer/arctic"
"github.com/Defacto2/df2/pkg/importer/audiop2p"
"github.com/Defacto2/df2/pkg/importer/hexwars"
"github.com/Defacto2/df2/pkg/importer/spirit"
"github.com/Defacto2/df2/pkg/importer/xdb"
Expand Down Expand Up @@ -308,6 +309,8 @@ func (dl *Download) ReadNfo(body, group string) error {
y, m, d = arcade.NfoDate(body)
case "arctic":
y, m, d = arctic.NfoDate(body)
case "audiop2p":
y, m, d = audiop2p.NfoDate(body)
case "hexwars":
y, m, d = hexwars.NfoDate(body)
case "spirit":
Expand Down

0 comments on commit 150d048

Please sign in to comment.