Denver Broncos insider Benjamin Allbright tweeted details that are better discussed in private.
While he has since deleted the viral thread, @NFLNotify was able to save screenshots of his admission. The corresponding text summarizes Allbright’s story:
“TRENDING: Self-proclaimed #Broncos Insider Benjamin Allbright appears to have accidentally posted his diary entry to Twitter. Allbright explains how he sexted his ex-GF while his current GF at the time was dealing with the trauma of being abandoned with the kids from her ex.”•
70% Win
(110-25-1)
70% Win
(110-25-1)
70% Win
(110-25-1)
'; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; if (totalVotes > 10) { pollCount.classList.remove("hidden"); } } function trackBetsTodayPollImpression() { var intersectionObserverForArticlePoll = new IntersectionObserver( function(entries) { entries.forEach(function(entry) { var pollId = entry.target.getAttribute("data-poll-id"); if (POLLS_BY_ID[pollId]['impression_tracked']) return; if (!entry.target || !entry.isIntersecting || entry.intersectionRatio < 0.5) return; setTimeout(function() { if (isInViewport(entry.target)) { POLLS_BY_ID[pollId]['impression_tracked'] = true; var isDesktop = "1"; var gaPayload = { "question" : POLLS_BY_ID[pollId]['question'], "category": "NFL", "page_url": window.location.href, "option1": POLLS_BY_ID[pollId]['option1'], "option2": POLLS_BY_ID[pollId]['option2'], } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } gtag("event", "BETS_TODAY_POLL_IMPRESSION", gaPayload); intersectionObserverForArticlePoll.unobserve(entry.target); } }, 1000); }); }, { threshold: 0.5 } ); var pollElements = document.querySelectorAll('.bets-today-poll'); pollElements.forEach(function(pollElement) { var isAnswered = pollElement.querySelector(".poll-option-answered"); if (!isAnswered) { intersectionObserverForArticlePoll.observe(pollElement); } }) } return { answerPollX: answerPollX, }; }();Based on the photos, Benjamin Allbright started the bizarre thread on April 6. He began by saying:
“I’ve been a bad friend, I’ve been a bad partner. I cheated on my partner. Not physically, but emotionally. Which is worse, to many. No one asked me to type this, and it is me typing it. I royally messed up.”He went on to tell the story, wherein he had confrontations with his current partner, stemming from their different love language. He and his partner quickly went into a relationship, and she also became Allbright’s No. 1 supporter when things got rough career-wise.
Instead of discussing things with his partner, Allbright contacted his ex-girlfriend, which led to sexting. He admitted:
“YEP. I am that piece of sh*t. Happened 4 or 5 times over a six-month period.”Allbright ended the thread by saying:
“I’d spend the rest of my life trying to make it up to them. But I think we all know with the unforgivable comes not being forgiven. She may see this. She may not. This isn’t my love letter or Hail Mary. “It’s my accountability to the world for being a pretty crummy person and warning everyone else to not be stupid. If you find your person, don’t lie to them. Don’t cheat on them. Open up while you can.”Allbright is a host and reporter for the Broncos flagship station KOA Colorado 94.1 FM and 850 AM. According to Front Office Sports’ Joe Londergan, he graduated from the University of Arkansas with degrees in English Literature, United States histor, and Statistics. He also had stints with Bleacher Report and CBS Sports.
He has over 165,000 Twitter followers. The only original tweets left on his account from April 6 were his joining Spoutible and his interview with former Broncos general manager Ted Sundquist.
Broncos insider Benjamin Allbright gets response from alleged ex-girlfriend
The drama added another chapter as a certain Jessica Maxwell responded to Allbright’s revelation.
The screengrabs revealed that Maxwell replied:
“When your ex posts your trauma on social?!? Tell me how much more of a piece of sh*t you can be @AllbrightNFL.”She also revealed that Benjamin Allbright owed him $40,000 over the last six months. Maxwell also claimed that Allbright threatened to defer payments if she did not delete her tweets.
Maxwell’s Twitter bio says that she's a choreographer and teacher at the Michelle Latimer Dance Academy in Centennial, Colorado. Her tweets are already protected, and she has to approve follow requests.
More from Sportskeeda
" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1466301, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1466301); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1466301) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1466301) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaKaWoXyvsdasZJuqn6OwsL%2BMoqWsoZSav26zzp6qZq6Zp66tedKcmKeckaG8tr%2FLsmSanJ2ewbW1zaBkmmWgnrKksYysZK1lo5rFtbXNoGSesF2cs26%2BxKWYraGfo8Cptc8%3D