Skip to content

Commit

Permalink
Merge branch 'release/9.0.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
smoyte committed Feb 25, 2024
2 parents 8892b93 + dbf9a3c commit 05c69ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.0.5
9.0.6
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module GDrive
module Migration
module Dashboard
class FilesController < ApplicationController
before_action -> { nav_context(:wiki, :gdrive, :migration, :dashboard, :files) }
before_action -> { nav_context(:files, :gdrive, :migration, :dashboard, :files) }

def index
@main_config = MainConfig.find_by(community: current_community)
Expand Down
3 changes: 3 additions & 0 deletions app/jobs/gdrive/migration/ingest_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ def ingest_files
migration_file = build_new_migration_file(file_id)
end

# If still nil, it must be an invalid file so we skip.
next if migration_file.nil?

begin
# This could fail if
# 1. the folder map for migration_file.parent_id is missing or invalid AND
Expand Down

0 comments on commit 05c69ac

Please sign in to comment.