fix(Go): Program only works with docx

This commit is contained in:
Olivier DOSSMANN 2024-07-18 09:56:04 +02:00
parent 32bedaf62d
commit a1c4002c5a

View File

@ -92,7 +92,7 @@ func fusionnerDocx(dossier string) {
}
for _, fichier := range fichiers {
if filepath.Ext(fichier.Name()) == ".doc" {
if filepath.Ext(fichier.Name()) == ".docx" {
cheminFichier := filepath.Join(dossier, fichier.Name())
doc, err := document.Open(cheminFichier)
if err != nil {