We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b98fea9 + 1590b5d commit 4c8aa53Copy full SHA for 4c8aa53
1 file changed
widget/controllers/widget.home.controller.js
@@ -749,19 +749,12 @@
749
WidgetHome.currentSkip = 0;
750
WidgetHome.currentlyLoading = false;
751
752
- const unregisterDeeplink = function(deepLinkId){
753
- buildfire.deeplink.unregisterDeeplink(deepLinkId, (err, result) => {
754
- if (err) return console.log(err);
755
- });
756
- }
757
-
758
WidgetHome.checkForDeeplink = () => {
759
if (!$window.deeplinkingDone) {
760
buildfire.deeplink.getData((data) => {
761
if (!data) return;
762
let itemId = null;
763
if (data.id) {
764
- unregisterDeeplink(data.id);
765
itemId = data.id;
766
}
767
else if (data.mediaId) itemId = data.mediaId;
0 commit comments