Skip to content

Commit

Permalink
fucking chat gpt
Browse files Browse the repository at this point in the history
  • Loading branch information
deepansh96 committed Apr 29, 2024
1 parent 19a4862 commit 9d0b08b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pages/Embeds/Plio.vue
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,10 @@ export default {
if (
this.plioSettings == null ||
!this.plioSettings.has("player") ||
!this.plioSettings.get("player").has("ui")
!("children" in this.plioSettings.get("player")) ||
this.plioSettings.get("player").children == null ||
!this.plioSettings.get("player").children.has("ui") ||
!("children" in this.plioSettings.get("player").children.get("ui"))
)
return this.defaultUISettings;
Expand Down

0 comments on commit 9d0b08b

Please sign in to comment.