Sam Jesso
Sam Jesso
@rnewman Doesn't look like it. Here are the approximate changes I made: ```diff - + ``` and ```diff useEffect( () => { // Always render attendee "jamsesso" into the video...
I've confirmed that attempting to bind `aaaa` and `bbbb` still does not work.
@ltrung I added a flag so that only one `VideoPlayer` calls `meetingManager.join()` and `meetingManager.start()`. See: ```js useEffect( (): void => { if (shouldJoin) { (async () => { await meetingManager.join(meetingInfo);...
@ltrung Our application lets you drag and drop the video tile from the pink side to the red side. When the drop event occurs, we want both videos to be...
Not a problem re: vacation time. I just read up on filters, which I admittedly didn't know existed! What I like about the proposed interface is that it only allows...
I'm not sure, to be honest. What I was trying to illustrate was that the authentication scheme could have a similar interface to filters (and not rely on `HTTPBuilder`). The...
As a workaround, can you treat your data as a string instead? For example, ``` { "if": [ {"==": [2, 2]}, "{\"key\": \"value1\"}", "{\"key\": \"value2\"}" ] } ```
The `if`s in the reproduction make this really hard to read. Can you reduce the testcase down? json-logic is hard to read.
Your data is incorrect, you need to do something like this: ``` Map data = new HashMap(); Map loan = new HashMap(); Map requestInfo = new HashMap(); Map user =...
It does support nested objects. ``` Map nested = Collections.singletonMap("B", "C"); Map data = Collections.singletonMap("A", nested); ``` As JSON this is `{"A": {"B": "C"}}`. If you have a JSON string...