| 213 | } |
| 214 | |
| 215 | static obs_data_t *copyData(const OBSData &data) |
| 216 | { |
| 217 | auto json = obs_data_get_json(data); |
| 218 | if (!json) { |
| 219 | return nullptr; |
| 220 | } |
| 221 | return obs_data_create_from_json(json); |
| 222 | } |
| 223 | |
| 224 | void EventSub::LogActiveSubscriptions() const |
| 225 | { |
no outgoing calls
no test coverage detected