Skip to content

Commit

Permalink
Fix a recursion error that occurs when there's no icon available for …
Browse files Browse the repository at this point in the history
…a registered service
  • Loading branch information
rhennigan committed Jan 11, 2024
1 parent eaabc3a commit f4684a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Chatbook/Services.wl
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ checkModelList // endDefinition;
(* ::**************************************************************************************************************:: *)
(* ::Subsection::Closed:: *)
(*$availableServices*)
$availableServices := getAvailableServices[ ];
$availableServices := Block[ { $availableServices = <| |> }, getAvailableServices[ ] ];

(* ::**************************************************************************************************************:: *)
(* ::Subsection::Closed:: *)
Expand Down

0 comments on commit f4684a9

Please sign in to comment.