Changeset 619
- Timestamp:
- 2007-09-29 21:02:48 (1 year ago)
- Files:
-
- trunk/chrome/content/dta/addurl.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/chrome/content/dta/addurl.js
r594 r619 365 365 // throws if empty 366 366 let uri = fs.createFixupURI(url, 0); 367 url = uri.spec; 367 try { 368 url = decodeURIComponent(uri.spec); 369 } 370 catch (ex) { 371 url = uri.spec; 372 } 368 373 } 369 374 catch (ex) {
