Skip to content

Commit

Permalink
Merge pull request #537 from WolframResearch/bugfix/recursion-error-f…
Browse files Browse the repository at this point in the history
…or-custom-services

Fix a recursion error that occurs when there's no icon available for a registered service
  • Loading branch information
rhennigan authored Jan 11, 2024
2 parents eaabc3a + f4684a9 commit c55f113
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 c55f113

Please sign in to comment.