ADVERTISEMENT

Twitter suspends accounts of journalists covering Musk

Published Dec 16, 2022 02:25 pm

SAN FRANCISCO, United States -- Twitter suspended Thursday accounts of more than a half-dozen journalists who had been writing about the company and its new owner Elon Musk.

Silencing journalists at Twitter while claiming to be a free speech champion is the latest controversy provoked by Musk since he took over the company, which has seen staffing gutted and advertisers exit.

Some of the journalists had been tweeting about Twitter shutting down an @ElonJet account that tracked flights of billionaire Musk's private jet and about versions of that account hosted at other social networks.

Twitter did not say why the reporters' accounts were suspended.

"Nothing says free speech like suspending journalists who cover you," Sarah Reese Jones of news commentary website PoliticusUSA said in a tweeted response to posts about the suspensions.

Checks at Twitter showed account suspensions included reporters from CNN, The New York Times, and The Washington Post as well as independent journalists.

"The impulsive and unjustified suspension of a number of reporters, including CNN's Donie O'Sullivan, is concerning but not surprising," the news organization said in a tweet.

"Twitter's increasing instability and volatility should be of incredible concern for everyone who uses the platform."

CNN said that it has asked Twitter for an explanation of the suspension.

In a statement, The New York Times said it also wanted answers from Twitter regarding the "questionable" suspension of journalists.

"I have no idea what rules I purportedly broke," independent journalist Aaron Rupar, whose Twitter account was suspended, wrote in a Substack post.

"I haven't heard anything from Twitter at all."

In a tweet late Thursday, Musk appeared to allude to the suspension of the reporters' accounts with this tweet: "If anyone posted real-time locations & addresses of NYT reporters, FBI would be investigating, there’d be hearings on Capitol Hill & Biden would give speeches about end of democracy!"

Musk on Wednesday tweeted that a car in Los Angeles carrying one of his children was followed by "a crazy stalker" and seemed to blame the tracking of his jet for this alleged incident. In the tweet, he said legal action is being taken against the person who ran ElonJet.

The Twitter account that tracked flights of Musk's private jet was shut down Wednesday despite the billionaire's statement that he is a free speech absolutist.

Twitter later sent out word that it updated its policy to prohibit tweets, in most cases, from giving away someone's location in real time.

Musk had gone public saying he would not touch @ElonJet after buying Twitter in a $44 billion deal as part of his commitment to free speech at the platform.

Exodus expected

Twitter has lurched from one controversy to the next since Musk took control in late October.

The billionaire's talk of unfettered speech scared off major advertisers and caught the attention of regulators.

Musk has reinstated the account of former US president Donald Trump and lashed out against the outgoing key advisor for the US response to the Covid-19 pandemic, Anthony Fauci, a frequent target of vitriol on right-wing media.

CNN has reported that Twitter's former head of trust and safety fled his home after baseless attacks on Twitter content moderation, endorsed by Musk.

Meanwhile, a purge initiated by Musk at Twitter left more than half of its 7,500 employees on the sidelines and now many of them are taking the SpaceX and Tesla tycoon to court.

Musk at one point signaled he was going to war with Apple over the App Store, only to later tweet that it was a "misunderstanding."

Market tracker Insider Intelligence forecast that Twitter will experience an exodus of users.

"There won’t be one catastrophic event that ends Twitter," said Insider Intelligence analyst Jasmine Enberg.

"Instead, users will start to leave the platform next year as they grow frustrated with technical issues and the proliferation of hateful or other unsavory content."


Related Tags

Elon Musk suspension Twitter Journalists
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.