Urgent.News

the world's headlines, one feed

Editions

Tech

Google Photos won’t let you search for your weed pictures, even if cannabis is legal

Overzealous guardrails prevent Gemini-powered Ask Photos and even classic search from returning results for cannabis.

Google Photos won’t let you search for your weed pictures, even if cannabis is legal

Google Photos, the cloud-based photo storage service owned by tech giant Google, has come under scrutiny for its search functionality. Specifically, the company's Gemini-powered Ask Photos feature is actively blocking searches for terms related to cannabis, even in regions where its consumption is legal. This restriction extends to classic search as well, treating private photo queries much like restricted generative prompts.

Users attempting to search for terms such as "weed," "cannabis," "marijuana," or "joints" have reported no results, even when using Google Photos' dedicated toggle to switch off Ask Photos and revert to classic search. This issue has surfaced as Google continues to integrate Gemini into its ecosystem, raising concerns about the heavy-handed guardrails that the AI-driven assistant applies to personal files.

Interestingly, alternative terms like "hemp" do not trigger the same restrictions, while queries related to "beer" or "alcohol" function without issue. The problem was first highlighted by Reddit user binarypower, who expressed frustration that their personal photos yielded no results when searching for cannabis-related terms. The Gemini-powered Ask Photos feature, designed to enhance user experience, has instead proven to be an obstacle for those seeking to find personal photos related to legal substances.

Written by urgent.news from Android Authority's reporting — not their text. Machine-written — it may contain errors, so check the original before relying on it.

Read the original at androidauthority.com →

More in Tech

What I Learned Building a Production LMS with Node.js, MongoDB & AWS in 2026

Building an LMS looks simple at the beginning. You need users, classes, payments, attendance, recordings, homework, notifications, and reports. Then you move into production.

  • Building a production LMS with Node.js, MongoDB, and AWS proved more complex than anticipated.
  • Proper system design matters more than technology choice.
  • Avoid treating schema design in MongoDB as optional; use dedicated collections for data growth.

How ReactJS Can Improve User Experience and Boost Your Bottom Line?

Most content about ReactJS and business value follows the same template: virtual DOM makes it fast, components make it reusable, fast and reusable means good for business.

  • ReactJS improves user experience with virtual DOM updating only changed components.
  • Component reusability speeds development, reduces bugs, and enhances codebase stability.
  • React Native enables cross-platform app development, lowering maintenance costs.

Three checks in our codebase that could not fail

Last night I found three checks in our own codebase that could not fail. Not checks that were failing to catch things. Checks that were structurally incapable of ever going red, while reporting green…

  • Three code checks in the system are structurally incapable of failing
  • First check uses verifier with line-for-line copy of the rule it enforces
  • Second check asserts its own arithmetic, reporting PASS with mismatched assertions

Head-of-Line Blocking in HTTP

An asynchronous HTTP/1.1 server can handle many connections concurrently while still serializing work within each connection.

  • Head-of-line blocking delays fast HTTP requests in slow connections
  • HTTP/2 solves this at application layer with independent streams
  • HTTP/3 uses QUIC transport-level streams to avoid blocking

ATProto for Distributed Systems Engineers: How Bluesky's Protocol Reimagines Social Infrastructure

Bluesky's AT Protocol is often dismissed as "just another Twitter alternative." But if you read the new technical deep dive aimed at distributed systems engineers, you'll find something much more…

  • ATProto reimagines social platforms from the ground up, challenging conventional web architecture.
  • Uses a federated model with user-controlled data stores and cryptographically signed repositories.
  • Separates app view from personal data store, allowing multiple app types to run on the same data.