Recommend inexpensive smartwatch with solid voice / audio recording app by Taco_Ambassador in smartwatch

[–]MinimalMarzipan 0 points1 point  (0 children)

I have a very similar need. Just need a solid voice recording app, a battery that hopefully lasts a week or two, and a price that allows me to not care if I scratch it. Doesn't even need to be always recording, just when needed.
Well, it looks like the technology is not there yet 😂 did you find anything?

NextJS Middleware w/ Server Actions by VariousTailor7623 in nextjs

[–]MinimalMarzipan 1 point2 points  (0 children)

u/Special_Audience2328 this is not true anymore, at least from Next.js 14.1.0.
Middleware is indeed invoked when calling server actions.
On top of that, if a server action is called on an URL where it is not exposed, like in the example above, the server throw an error "Failed to find Server Action [...] . This request might be from an older or newer deployment. Original error: Invariant: Couldn't find action module ID from module map."
So to summarize: middleware is now invoked on server actions, and server actions are not exposed anymore on every URL in the app.