1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

fix: Wakatime command name.

This commit is contained in:
Luis Reinoso
2020-06-07 11:01:44 -05:00
parent c02ab033f4
commit 76da76ae76

View File

@@ -50,11 +50,11 @@ class PluginsTab extends React.Component {
checkWakatimePluginRequirement() {
const { wakatime } = this.state.config
if (wakatime.isActive && !commandExists('wakatime-cli')) {
if (wakatime.isActive && !commandExists('wakatime')) {
this.setState({
wakatimePluginAlert: {
type: i18n.__('Warning'),
message: i18n.__('Missing wakatime-cli')
message: i18n.__('Missing wakatime cli')
}
})