Skip to content

Commit

Permalink
Throw error when asked by CSpyServer for a theme
Browse files Browse the repository at this point in the history
  • Loading branch information
HampusAdolfsson committed Jan 25, 2024
1 parent 357b1ac commit 587f64b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dap/frontendHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,6 @@ export class FrontendHandler implements ThriftServiceHandler<Frontend.Client> {
}

getActiveTheme(): Q.Promise<{ [k: number]: ColorSchema }> {
return Q.resolve({});
return Q.reject(new Error("Not supported"));
}
}

0 comments on commit 587f64b

Please sign in to comment.