Skip to content

Commit

Permalink
fix: backup linked file md5
Browse files Browse the repository at this point in the history
  • Loading branch information
Enoch02 committed Nov 4, 2024
1 parent 194c12a commit 12f6dd8
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ class CSVManager(
"Type",
"Cover Image[Base64]",
"Notes",
"Status"
"Status",
"Linked file md5"
)
)

Expand All @@ -74,7 +75,8 @@ class CSVManager(
it.type,
encodedImage,
it.notes,
it.status
it.status,
it.documentMd5
)

writeRow(row)
Expand Down Expand Up @@ -117,7 +119,8 @@ class CSVManager(
name = row[0]
),
notes = row[12],
status = row[13]
status = row[13],
documentMd5 = row[14]
)

bookDao.insertBook(book)
Expand Down

0 comments on commit 12f6dd8

Please sign in to comment.