Skip to content

Commit

Permalink
applications: Use default InfoModel
Browse files Browse the repository at this point in the history
  • Loading branch information
tchx84 committed Sep 7, 2023
1 parent fbbedb9 commit 2ab93c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/models/applications.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

const {GObject, GLib, Gio, AppStreamGlib} = imports.gi;

const {FlatpakInfoModel} = imports.models.info;
const {info} = imports.models;

const SIGNAL_DELAY = 500;
const TARGET_EVENTS = [
Expand All @@ -41,7 +41,7 @@ var FlatpakApplicationsModel = GObject.registerClass({

_setup() {
this._paths = null;
this._info = new FlatpakInfoModel();
this._info = info.getDefault();
this._monitors = [];
this._changedDelayHandlerId = 0;

Expand Down

0 comments on commit 2ab93c3

Please sign in to comment.