Skip to content

Commit

Permalink
Merge pull request #81 from StampyAI/move-unlisted-live-gdrive-murphant
Browse files Browse the repository at this point in the history
Move Unlisted to Live folder in Drive
  • Loading branch information
LeMurphant authored Jan 23, 2025
2 parents 3b87ea1 + 609b530 commit a0da797
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion parser/gdrive.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,11 @@ export const moveAnswer = async (drive, answer) => {

if (status === "Marked for deletion") {
folderName = "Removed answers";
} else if (status === "Live on site" || status === "Subsection") {
} else if (
status === "Live on site" ||
status === "Subsection" ||
status === "Unlisted"
) {
folderName = "Live on site";
} else {
folderName = "In progress";
Expand Down

0 comments on commit a0da797

Please sign in to comment.