From 43d754eb42e119f4852170988e04a4cb9c4ecb64 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 12 May 2017 16:47:55 +0200 Subject: Fix not rejecting remote URIs when parsing out local IDs (#3012) --- app/services/process_interaction_service.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'app/services/process_interaction_service.rb') diff --git a/app/services/process_interaction_service.rb b/app/services/process_interaction_service.rb index 16eac2353..bc8361510 100644 --- a/app/services/process_interaction_service.rb +++ b/app/services/process_interaction_service.rb @@ -123,7 +123,9 @@ class ProcessInteractionService < BaseService end def status(xml) - Status.find(TagManager.instance.unique_tag_to_local_id(activity_id(xml), 'Status')) + uri = activity_id(xml) + return nil unless TagManager.instance.local_id?(uri) + Status.find(TagManager.instance.unique_tag_to_local_id(uri, 'Status')) end def activity_id(xml) -- cgit