Skip to content

Commit cfad1e1

Browse files
committed
fix: GetSourceFilterInfoResponse.settings
1 parent f116518 commit cfad1e1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/main/java/net/twasi/obsremotejava/requests/GetSourceFilterInfo/GetSourceFilterInfoResponse.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33
import com.google.gson.JsonObject;
44
import net.twasi.obsremotejava.requests.ResponseBase;
55

6-
import java.util.Map;
7-
86
public class GetSourceFilterInfoResponse extends ResponseBase {
97
private boolean enabled;
108
private String type;
119
private String name;
12-
private Map<String, String> settings;
10+
private JsonObject settings;
1311

1412
public boolean isEnabled() {
1513
return enabled;
@@ -23,7 +21,7 @@ public String getName() {
2321
return name;
2422
}
2523

26-
public Map<String, String> getSettings() {
24+
public JsonObject getSettings() {
2725
return settings;
2826
}
2927
}

0 commit comments

Comments
 (0)