Skip to content

Commit 8e6ab58

Browse files
committed
screenShield.js: Fix invalid character.
Autocomplete, or something...
1 parent c8e0288 commit 8e6ab58

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

js/ui/screensaver/screenShield.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ var ScreenShield = GObject.registerClass({
223223

224224
let locked = newState === State.LOCKED || newState === State.UNLOCKING;
225225
let wasLocked = oldState === State.LOCKED || oldState === State.UNLOCKING;
226-
if (locked !== wasLocked && !Metа.is_wayland_compositor()) {
226+
if (locked !== wasLocked && !Meta.is_wayland_compositor()) {
227227
global.settings.set_boolean('session-locked-state', locked);
228228
}
229229

0 commit comments

Comments
 (0)