Yuzuki Aida

Results 11 comments of Yuzuki Aida

The top-level await used by the wasm-loader seems to be causing problems. (Probably not officially supported yet: https://github.com/vercel/next.js/issues/31054) https://github.com/prisma/prisma/blob/0c29ecf2e5f2543bc72d3bbee38d32e130d7727c/packages/client/src/generation/generateClient.ts#L190-L191 I have not submitted a pull request because I cannot evaluate...

Thank you for the response. I checked that version, but I encountered the following error in the calling Prisma function: ``` ⨯ ReferenceError: wasm_262ccad897196f9ab2ade3f9f1444a4c7ab39a50 is not defined at __webpack_require__ (/Users/nzws/ghq/github.com/nzws/prisma-with-nextjs-edge-import-problem-repro/.next/server/edge-runtime-webpack.js:37:33)...

最初P2Pで実装しようと思ってたけど(配信者側負荷的に)きついかもしれない

コラボレータ(参加希望者)側の情報は改ざん可能(ex: お一人様インスタンス)で使うべきではないので、配信主側のトークンを使ってrelationshipを確認する必要があるが、セキュリティ面でそもそもサーバ側にトークンを保管してないので、 とりあえずコラボレータ側のセッションで自薦ボタンを表示するかどうか判断し(この時点では改ざんされてるかわからない)、ボタンを押したらリクエストを発行して、配信主側のセッションでリクエストを受け取った時に初めてちゃんとしたデータで確認して大丈夫だったら何らかの方法で配信主へ通知からの手動承認、改ざんされてたら自動でリジェクトするようにすればまぁ良さそう

計2回relationship確認するのがちょっと効率悪いけどしゃーなし 緩和策としては同じインスタンス間または信頼されているインスタンス(といっても色々面倒なのでメインのインスタンスだけで良さそう)の場合はコラボレータ側のセッションで取ったrelationshipを信頼するみたいな感じにすれば良さそう?

ついでに応用してサムネイル生成できそうってまじ?

とくに制限とかはしてないんだけどどうやってバックグラウンドで再生させるのかいまいち分かってない

配信主がリスナー全員に反映される形でいじれるようにするか、リスナーが個別に変更できるようにするかどっちにしよう

I'm not sure if this is the cause of [the error](https://github.com/prisma/prisma/issues/23600#issuecomment-2120636463), but it probably requires a fix in the import destination. In this file, I think it needs to dynamically...

I would prefer this bug to be fixed at the framework side. However, as a workaround until the bug is fixed, I came up with the following approach: ```typescript import...