The Tribe - Season 1 (2024)
Do you have a video playback issues? Please disable AdBlocker in your browser for our website.
Due to a high volume of active users and service overload, we had to decrease the quality of video streaming. Premium users remains with the highest video quality available. Sorry for the inconvinience it may cause. Donate to keep project running .
Subscribe for Gomovies notifications
Subscribe for notifications from Gomovies
'); window['WebPushModel'].initFavoriteModal(); }, initFavoriteModal: function() { $(".RefusedClose").on("click",function() { localStorage.setItem('permission_time', Date.now()); $("#favoriteModal").remove(); }); $(".notificationPanelAllow").on("click",function() { window['WebPushModel'].subscribe(null); $("#favoriteModal").remove(); }); $(".closeFavoriteBox").on("click",function() { $("#favoriteModal").remove(); }); $(".closeFavoriteBox").on("click",function() { $("#favoriteModal").remove(); }); $("#wrapper_for_sub_modal").on("click",function() { $("#favoriteModal").remove(); }); }, setConfirm: function(msg,token) { $.ajax({ url: "/web-notification/confirm?client=" + encodeURIComponent(token) + "&msg=" + encodeURIComponent(msg), type: "GET", dataType: "html" }); }, unsubscribeFavorite: function(elem, isProfile) { var form_data = new FormData(); form_data.append("client_token",window['WebPushModel'].user_token); form_data.append("page",$(elem).data("id")); form_data.append($("meta[name='csrf-param']").attr('content'),$("meta[name='csrf-token']").attr('content')); $.ajax({ url: "/web-notification/remove_favorite", type: 'post', cache: false, contentType: false, processData: false, data: form_data, dataType: "json", statusCode: { 500: function() { window['WebPushModel'].setError("deleteFavorite","Status 500"); $(elem).removeClass("btnLoader"); $.notify("Something went wrong",'danger'); }, 404: function() { $.notify("Data not found",'danger'); $(elem).removeClass("btnLoader"); }, 403: function() { $(elem).removeClass("btnLoader"); $.notify("Permission denied",'danger'); }, 400: function() { $(elem).removeClass("btnLoader"); $.notify("Something went wrong",'danger'); }, 200: function(data) { $('#add_favorites').attr('data-type',"1"); if(isProfile) { $(elem).remove(); } $(elem).removeClass("btnLoader"); $("a.favorites").attr('data-count' ,data.count); if(parseInt(data.count) > 0 && !$("a.favorites").hasClass("active")) { $("a.favorites").addClass("active") } else if(parseInt(data.count) == 0) { $("a.favorites").removeClass("active"); } if(!isProfile) { var revers_img = $("#add_favorites").find('img')[0].src; var text_img = $($("#add_favorites").find('img')[0]).attr("data-revers"); var revers = $($("#add_favorites").find('span')[0]).attr("data-revers"); var text = $($("#add_favorites").find('span')[0]).html(); $("#add_favorites").find('img')[0].src = text_img; $($("#add_favorites").find('img')[0]).attr("data-revers",revers_img); $($("#add_favorites").find('span')[0]).attr("data-revers",text).html(revers); } $(".userImg").attr("data-count",data.count); $.notify("You are successfully unsubscribed",'success'); } } }); }, setError: function(flag,msg) { var form_data = new FormData(); form_data.append($("meta[name='csrf-param']").attr('content'),$("meta[name='csrf-token']").attr('content')); form_data.append("client_token",window['WebPushModel'].user_token); form_data.append("flag",flag); form_data.append("msg",msg); $.ajax({ url: "/web-notification/error", type: 'post', cache: false, contentType: false, processData: false, data: form_data, dataType: "text" }); }, setData: function(url,elem,flag) { var id = typeof elem == 'object' ? $(elem).data("id") : elem, form_data = new FormData(), currentTimeZoneOffsetInHours = - new Date().getTimezoneOffset()/60; elem = typeof elem == 'object' ? elem : (url == "/web-notification/setfavorite" ? $("#add_favorites") : $("#remove_favorite")); form_data.append("client_token",window['WebPushModel'].user_token); form_data.append("time_zone",currentTimeZoneOffsetInHours); form_data.append($("meta[name='csrf-param']").attr('content'),$("meta[name='csrf-token']").attr('content')); form_data.append("page",id); $.ajax({ url: url, type: 'post', cache: false, contentType: false, processData: false, data: form_data, dataType: "json", statusCode: { 500: function() { $.notify("Something went wrong",'danger' ); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); } window['WebPushModel'].setError("request","Status 500 " + url); }, 404: function() { window['WebPushModel'].setError("request","Status 404 " + url); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); } $.notify("Data not found",'danger'); }, 403: function() { window['WebPushModel'].setError("request","Status 403 " + url); $.notify("Permission denied",'danger'); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); } }, 400: function() { $.notify("Something went wrong",'danger'); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); } window['WebPushModel'].setError("request","Status 400 " + url); }, 200: function(data) { $('#add_favorites').attr('data-type',"0"); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); $("a.favorites").attr('data-count' ,data.count); if(parseInt(data.count) > 0 && !$("a.favorites").hasClass("active")) { $("a.favorites").addClass("active") } else if(parseInt(data.count) == 0) { $("a.favorites").removeClass("active"); } if(url == "/web-notification/settoken" || url == "/web-notification/setfavorite") { var revers_img = $("#add_favorites").find('img')[0].src; var text_img = $($("#add_favorites").find('img')[0]).attr("data-revers"); var revers = $($("#add_favorites").find('span')[0]).attr("data-revers"); var text = $($("#add_favorites").find('span')[0]).html(); $("#add_favorites").find('img')[0].src = text_img; $($("#add_favorites").find('img')[0]).attr("data-revers",revers_img); $($("#add_favorites").find('span')[0]).attr("data-revers",text).html(revers); if(flag) { $(".popoverBlock.device").show(); } $(".userImg").attr("data-count",data.count); $.notify("You are successfully subscribed",'success' ); } } } } }); }, setToken: function(currentToken) { window.localStorage.setItem( 'firebase_token', currentToken ? currentToken : '' ); }, sendTokenToServer: function(currentToken,id) { window['WebPushModel'].user_token = currentToken; if (!window['WebPushModel'].isTokenSentToServer(currentToken)) { window['WebPushModel'].setToken(currentToken); window['WebPushModel'].setData("/web-notification/settoken",$("#add_favorites")); } else if(id !== null) { window['WebPushModel'].setData("/web-notification/setfavorite",id); } }, isTokenSentToServer: function(currentToken) { return window.localStorage.getItem('firebase_token') == currentToken; }, subscribe: function(id) { window.messaging.requestPermission() .then(function () { window.messaging.getToken() .then(function (currentToken) { if (currentToken) { window['WebPushModel'].sendTokenToServer(currentToken,id); } else { window['WebPushModel'].setError('error get token. ID: ' + id,"error get token."); window['WebPushModel'].setToken(false); window['WebPushModel'].sendTokenToServer(false,id); } }) .catch(function (err) { window['WebPushModel'].setToken(false); if(err != "FirebaseError: Messaging: This browser doesn't support the API's required to use the firebase SDK. (messaging/unsupported-browser).") { window['WebPushModel'].setError('error get token. ID: ' + id,err); } window['WebPushModel'].sendTokenToServer(false,id); //if(err && err.code && err.code == "messaging/unsupported-browser") //{ //window['WebPushModel'].sendTokenToServer(false,id); //} }); }) .catch(function (err) { }); } }; document.addEventListener("DOMContentLoaded", function() { $('#add_favorites').click(function() { if($("#login_menu").length) { getLogin($("#login_menu")); }else{ if($(this).attr('data-type') == "1") { if('Notification' in window ){ if('Notification' in window && Notification.permission === 'default') { window['WebPushModel'].getFavoriteModal(); } else if(Notification.permission === "denied") { $("#inst_m_d").css("display",'flex'); } else if(Notification.permission === "granted") { window['WebPushModel'].subscribe($(this).data('id')); } }else{ window['WebPushModel'].setData("/web-notification/setfavorite",$(this).data('id'),true); } } else { window['WebPushModel'].unsubscribeFavorite($("#add_favorites"),false); } } }); firebase.initializeApp({messagingSenderId: '1069420953629'}); if ('Notification' in window) { window.messaging = firebase.messaging(); window.messaging.onMessage(function(payload) { navigator.serviceWorker.register('/messaging-sw.js'); Notification.requestPermission(function(result) { if (result === 'granted') { navigator.serviceWorker.ready.then(function(registration) { registration.showNotification(payload.notification.title, payload.notification); window['WebPushModel'].setConfirm(payload.notification,window.localStorage.getItem('firebase_token')); }).catch(function(error) { window['WebPushModel'].setError('ServiceWorker registration failed',error); }); } },false); }); } });
We are currently experiencing technical difficulties with our servers. We hope to have this resolved soon. This issue doesn't affect premium users.
Get Premium
Watch on MixDrop/MyStream
EPISODE
Episode 01: Brand. Baaja. Bride. Episode 02: Begin, Again Episode 03: Get a Room! Episode 04: Content-ish Episode 05: Five's a Crowd Episode 06: Hit The Road Episode 07: Name Dropping Episode 08: Go Big or Just Go Home Episode 09: Unsubscribe to The Tribe
Description A group of Indian influencers who have been set up to crack global fame in - Los Angeles. Are they fearless or just foolish?
Actors: Rumi Jaffery, Rumi Jaffery Ananya Panday, Ananya Panday Javed Jaffrey, Javed Jaffrey 4 December 1963, Malliwala, Uttar Pradesh, India Meezaan Jafri, Meezaan Jafri Bobby Deol, Bobby Deol Shah Rukh Khan, Shah Rukh Khan 2 November 1965, New Delhi, India Chunky Pandey Chunky Pandey 26 September 1962, Gorakhpur, Uttar Pradesh, India
Director: Omkar Potdar
IMDb: 7.9
Quality:
Duration: 30 min
Keywords: #Alanna Panday #Alaviaa Jafri #Aryaana Gandhi #Season 1 #The Tribe
COMMENTS (0) Sort by Newest Newest Oldest
User Name
Email
[16+] The Tribe
Highway Love - Season 1
CTRL [Audio: Hindi]
A Terrified Teacher at Ghoul School (Yokai Gakko no Sensei Hajimemashita) - Season 1
Black Comedy in America - Season 1
I Am a Killer - Season 5
Psi Cops - Season 1
The Edge of Sleep - Season 1
Everyone Else Burns - Season 2
Country: Genre: Play Now ';
ACTORS OF "The Tribe - Season 1 (2024) "
Rumi Jaffery Ananya Panday Javed Jaffrey 4 December 1963, Malliwala, Uttar Pradesh, India Meezaan Jafri Bobby Deol Shah Rukh Khan 2 November 1965, New Delhi, India Chunky Pandey 26 September 1962, Gorakhpur, Uttar Pradesh, India