From f15ba324773942e8a4980a1e28c899107f748fa1 Mon Sep 17 00:00:00 2001
From: Thomas Rientjes <synzvato@protonmail.com>
Date: Wed, 9 Dec 2015 16:10:44 +0100
Subject: [PATCH] Apply temporary bugfix

---
 lib/interceptor.js | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/lib/interceptor.js b/lib/interceptor.js
index 89f669d..dc6bc9d 100644
--- a/lib/interceptor.js
+++ b/lib/interceptor.js
@@ -65,6 +65,12 @@ var Interceptor = new Class({
         // Remove referer header from request.
         httpChannel.setRequestHeader('Referer', null, false);
 
+        // Temporary fix for reported issues with the Play Store website.
+        if (httpChannel.referrer.host === 'play.google.com') {
+            this.handleMissingCandidate(httpChannel);
+            return;
+        }
+
         // Convert the original request URI to a local target.
         target = requestAnalyzer.getLocalTarget(httpChannel.URI.host, httpChannel.URI.path);
 
-- 
GitLab