File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ private async Task DisconnectVoiceClient()
143143 {
144144 await playerState . StopCts ? . CancelAsync ( ) ! ;
145145 playerState . StopCts ? . Dispose ( ) ;
146- playerState . StopCts = null ;
146+ playerState . StopCts = null ! ;
147147 playerState . CurrentAction = PlayerAction . Stop ;
148148 playerState . DisconnectAsyncCallback = null ;
149149 playerState . CurrentVoiceClient = null ;
Original file line number Diff line number Diff line change 66 "scripts" : {
77 "dev" : " vite" ,
88 "build" : " tsc && vite build --mode production" ,
9+ "build:dev" : " tsc && vite build --mode development" ,
910 "preview" : " vite preview"
1011 },
1112 "dependencies" : {
Original file line number Diff line number Diff line change 7575 <Target Name =" BuildFrontend" BeforeTargets =" Build" >
7676 <Message Text =" Building frontend..." Importance =" high" />
7777 <Exec Command =" npm install" WorkingDirectory =" ../UI/App" />
78- <Exec Command =" npm run build" WorkingDirectory =" ../UI/App" />
78+ <Exec Command =" npm run build" WorkingDirectory =" ../UI/App" Condition =" '$(Configuration)' == 'Release'" />
79+ <Exec Command =" npm run build:dev" WorkingDirectory =" ../UI/App" Condition =" '$(Configuration)' == 'Debug'" />
7980 <Message Text =" Frontend build complete" Importance =" high" />
8081 </Target >
8182
You can’t perform that action at this time.
0 commit comments