We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9778f0c commit 3f90178Copy full SHA for 3f90178
src/features/packages/Packages.jsx
@@ -191,6 +191,7 @@ export default function Packages({ adb }) {
191
}, [dispatch]);
192
193
const rows = renderRows.map((item) => {
194
+ console.log(item.details.homepage);
195
return (
196
<TableRow key={item.name}>
197
<TableCell sx={{ width: 250 }}>
src/utils/AdbWrapper.js
@@ -217,6 +217,7 @@ export default class AdbWrapper {
217
}
218
219
async getPackages() {
220
+
221
let output = await this.executeCommand([
222
this.wtfos.bin.opkg,
223
"list-installed",
0 commit comments