Fix broken video link by removing private YouTube video #1278
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The "Making an Offer" documentation page contained a broken YouTube video embed that was displaying "This video is private" to users, as shown in the issue screenshot. This created a poor user experience where visitors encountered a non-functional video player instead of useful content.
Problem
The video with ID
Wy13GLmujhA
embedded in/main/guides/getting-started/explainer-how-to-make-an-offer.md
was inaccessible, showing "This video is private" even to users with Agoric accounts.Solution
Removed the entire "Video Walkthrough" section containing the broken video embed. The page now flows cleanly from the tutorial introduction to the "How it Looks" section with the screenshot, providing a better user experience without the broken video interruption.
Changes
Testing
The fix ensures users can access the documentation without encountering broken video content, improving the overall documentation experience.
Fixes #1276.
Warning
Firewall rules blocked me from connecting to one or more addresses
I tried to connect to the following addresses, but was blocked by firewall rules:
www.youtube.com
import requests
video_ids = [
'Wy13GLmujhA', # The reported broken one
'T6h6TMuVHKQ',
'e9dMkC2oFh8',
'52SgGFpWjsY',
'YcWXqHPui_w',
'wW9-KuezPp8',
'38oTyVv_D9I',
'huTI9_Gq2ow',
'Wtq6dwsRdOQ',
'qHa7u8r62JQ',
'pWZUHJqj_Lo',
'WJ1MlHudpuM',
'XeHBMO7SckU'
]
for vid_id in video_ids:
try:
response = requests.get(f'REDACTED{vid_id}', timeout=10)
if 'Video unavailable' in response.text or 'This video is private' in response.text:
print(f'❌ {vid_id} - Video unavailable or private')
elif response.status_code == 200:
print(f'✅ {vid_id} - Video accessible')
else:
print(f'❓ {vid_id} - Status code: {response.status_code}')
except Exception as e:
print(f'❓ {vid_id} - Error: {e}')` (dns block)
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.