Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,7 @@ <h1 class="hero-title">
</p>

<div class="hero-buttons">
<a href="https://github.com/RaheemJnr/pocket-node/releases/download/v1.5.1/PocketNode-v1.5.1.apk" class="btn btn--primary">
<a href="https://github.com/RaheemJnr/pocket-node/releases/download/v1.5.2/PocketNode-v1.5.2.apk" class="btn btn--primary">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"/><polyline points="7,10 12,15 17,10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>
Download APK
</a>
Comment on lines +1115 to 1118
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

TAG="v1.5.2"
EXPECTED="PocketNode-v1.5.2.apk"

# GitHub API: list assets for the release tag
curl -sL "https://api.github.com/repos/RaheemJnr/pocket-node/releases/tags/${TAG}" \
| python - <<'PY'
import json, sys
data=json.load(sys.stdin)
assets=data.get("assets", [])
names=[a.get("name") for a in assets]
expected="${EXPECTED}"
print("Found assets:", len(names))
print("Expected present?:", expected in names)
if expected not in names:
    raise SystemExit(1)
PY

Repository: RaheemJnr/pocket-node

Length of output: 786


🏁 Script executed:

#!/bin/bash
set -uo pipefail

TAG="v1.5.2"
REPO="RaheemJnr/pocket-node"

echo "=== Attempting to fetch release info for tag: $TAG ==="
HTTP_CODE=$(curl -s -w "%{http_code}" -o /tmp/release_response.json "https://api.github.com/repos/${REPO}/releases/tags/${TAG}")
echo "HTTP Status Code: $HTTP_CODE"

echo ""
echo "=== Raw API Response (first 1000 chars) ==="
head -c 1000 /tmp/release_response.json
echo ""

echo ""
echo "=== All available releases (latest 10) ==="
curl -s "https://api.github.com/repos/${REPO}/releases?per_page=10" | python3 <<'PYEOF'
import json, sys
try:
    data = json.load(sys.stdin)
    if isinstance(data, list):
        for release in data:
            tag = release.get('tag_name', 'N/A')
            assets = [a.get('name', 'N/A') for a in release.get('assets', [])]
            print(f"Tag: {tag} -> Assets: {assets}")
    else:
        print("Response is not a list:", data)
except Exception as e:
    print(f"Error parsing JSON: {e}")
PYEOF

Repository: RaheemJnr/pocket-node

Length of output: 577


🌐 Web query:

pocket-node GitHub release v1.5.2 PocketNode APK

💡 Result:

No GitHub release v1.5.2 for pocket-node or PocketNode exists, and no associated APK was found. The query appears to reference non-existent or undocumented assets. pocket-node (pokt-network/pocket-node) is a deprecated JavaScript REST API for Pocket Network blockchain relays (last update 2019, npm versions up to 0.0.12). PocketNode (pocketnode/PocketNode) is an archived Minecraft Bedrock server in Node.js (last release 0.0.5 in 2018). Neither has v1.5.2 or APK releases. Recent "pocket node" APKs are unrelated Android apps: bitcoin-pocket-node (v0.34-alpha), xmr-pocket-node (v0.5.0-alpha, archived), RaheemJnr/pocket-node (v1.4.1, Nervos CKB light client). None match v1.5.2.

Citations:


The v1.5.2 release does not exist on GitHub—the download button will fail with a 404 error.

The GitHub repository RaheemJnr/pocket-node has no v1.5.2 tag or release. The latest available release is v1.4.1. You must either create the v1.5.2 release on GitHub with an asset named PocketNode-v1.5.2.apk, or update the download links in lines 1115, 1416, and 1448 to point to the existing v1.4.1 release.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@website/index.html` around lines 1115 - 1118, The download link points to a
non-existent release v1.5.2 and will 404; either publish a GitHub release named
v1.5.2 with an asset PocketNode-v1.5.2.apk, or update all anchor hrefs that
currently reference "PocketNode-v1.5.2.apk" (the <a class="btn btn--primary">
Download APK links) to point to the existing release (e.g., replace with
"PocketNode-v1.4.1.apk") so the download URLs resolve.

Expand Down Expand Up @@ -1413,7 +1413,7 @@ <h2 class="section-title animate-on-scroll">Take control of your CKB</h2>
<p class="section-desc animate-on-scroll">Join the growing community of Nervos users who verify everything locally. No trust required.</p>

<div class="cta-buttons animate-on-scroll">
<a href="https://github.com/RaheemJnr/pocket-node/releases/download/v1.5.1/PocketNode-v1.5.1.apk" class="btn btn--primary">
<a href="https://github.com/RaheemJnr/pocket-node/releases/download/v1.5.2/PocketNode-v1.5.2.apk" class="btn btn--primary">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"/><polyline points="7,10 12,15 17,10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>
Download for Android
</a>
Expand Down Expand Up @@ -1445,7 +1445,7 @@ <h4>Product</h4>
<li><a href="#features">Features</a></li>
<li><a href="#security">Security</a></li>
<li><a href="#tech">Technical</a></li>
<li><a href="https://github.com/RaheemJnr/pocket-node/releases/download/v1.5.1/PocketNode-v1.5.1.apk">Get App</a></li>
<li><a href="https://github.com/RaheemJnr/pocket-node/releases/download/v1.5.2/PocketNode-v1.5.2.apk">Get App</a></li>
</ul>
</div>
<div class="footer-col">
Expand Down
Loading