From 7cd388dbd4de5980fafcec7d9bd096413f89d54b Mon Sep 17 00:00:00 2001 From: Rick Barrette Date: Sat, 21 Mar 2026 10:26:57 -0400 Subject: [PATCH 1/2] Fixed webhook --- app/jobs/webhook_process_job.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/jobs/webhook_process_job.rb b/app/jobs/webhook_process_job.rb index e35938b..283090b 100644 --- a/app/jobs/webhook_process_job.rb +++ b/app/jobs/webhook_process_job.rb @@ -48,7 +48,7 @@ class WebhookProcessJob < ActiveJob::Base Redmine::Hook.call_hook( :qbo_additional_entities ).each do |context| next unless context Array(context).each do |entity| - jobs.push(entity) + entities.push(entity) log "Added additional QBO entity #{entity}" end end From f73973a4e1e340ab5dfce5f43c13cc806b93132e Mon Sep 17 00:00:00 2001 From: Rick Barrette Date: Sat, 21 Mar 2026 10:27:33 -0400 Subject: [PATCH 2/2] 2026.3.14 --- init.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.rb b/init.rb index 4b447a0..f688a36 100644 --- a/init.rb +++ b/init.rb @@ -14,7 +14,7 @@ Redmine::Plugin.register :redmine_qbo do name 'Redmine QBO plugin' author 'Rick Barrette' description 'A pluging for Redmine to connect with QuickBooks Online to create Time Activity Entries for billable hours logged when an Issue is closed' - version '2026.3.13' + version '2026.3.14' url 'https://github.com/rickbarrette/redmine_qbo' author_url 'https://barrettefabrication.com' settings default: {empty: true}, partial: 'qbo/settings'